summaryrefslogtreecommitdiff
path: root/runtime/debugger.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2019-03-26 15:17:21 +0000
committer Vladimir Marko <vmarko@google.com> 2019-03-27 09:45:20 +0000
commit423bebb17f15c3867a52315f0ae421f08f14544f (patch)
tree97bdf50c7144ae21e6abfe8bdc26858a6a10f94d /runtime/debugger.h
parent93d99f3665cbd890509f4c707e1a62c5f26d320e (diff)
ObjPtr<>-ify mirror::ObjectArray.
Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Bug: 31113334 Change-Id: I611b3e49d3feed306f6cd35d2b662a1e727e24c6
Diffstat (limited to 'runtime/debugger.h')
-rw-r--r--runtime/debugger.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/debugger.h b/runtime/debugger.h
index 33444f829c..1dbf8bec51 100644
--- a/runtime/debugger.h
+++ b/runtime/debugger.h
@@ -709,7 +709,8 @@ class Dbg {
return gRegistry;
}
- static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o)
+ static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa,
+ ObjPtr<mirror::Object> o)
REQUIRES_SHARED(Locks::mutator_lock_);
static JDWP::JdwpTypeTag GetTypeTag(ObjPtr<mirror::Class> klass)