summaryrefslogtreecommitdiff
path: root/patchoat/patchoat.h
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2017-07-18 15:45:12 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-07-18 15:45:12 +0000
commit2f0ac4fb4486e7d9e5c1545d45a2b9b818a80dc3 (patch)
tree5f9665e7b3299f911a2a305e17c5e678cdd51c49 /patchoat/patchoat.h
parent9fb4e85d6e42b3f060ddcefcbf39bdfec656fc52 (diff)
parent2bff9ca67a3e945f7c2ca7e8a075e2d91637b01b (diff)
Merge changes I01b45c86,I10307aea,Iefccd6ff,Ibbda8e9a,I71a7f59b
* changes: ART: Remove more object_callbacks.h includes ART: Replace or remove some ObjectCallback Walk functions ART: Remove old visit functions ART: Use VisitObjects visitor functions ART: Add templated VisitObjects
Diffstat (limited to 'patchoat/patchoat.h')
-rw-r--r--patchoat/patchoat.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/patchoat/patchoat.h b/patchoat/patchoat.h
index e15a6bc695..182ce94a78 100644
--- a/patchoat/patchoat.h
+++ b/patchoat/patchoat.h
@@ -79,11 +79,6 @@ class PatchOat {
static bool ReplaceOatFileWithSymlink(const std::string& input_oat_filename,
const std::string& output_oat_filename);
- static void BitmapCallback(mirror::Object* obj, void* arg)
- REQUIRES_SHARED(Locks::mutator_lock_) {
- reinterpret_cast<PatchOat*>(arg)->VisitObject(obj);
- }
-
void VisitObject(mirror::Object* obj)
REQUIRES_SHARED(Locks::mutator_lock_);
void FixupMethod(ArtMethod* object, ArtMethod* copy)