summaryrefslogtreecommitdiffstats
path: root/runtime/reference_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/reference_table.h')
-rw-r--r--runtime/reference_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/reference_table.h b/runtime/reference_table.h
index 37b31723ae..c9f5bc5c57 100644
--- a/runtime/reference_table.h
+++ b/runtime/reference_table.h
@@ -22,8 +22,8 @@
#include <string>
#include <vector>
+#include "object_callbacks.h"
#include "locks.h"
-#include "root_visitor.h"
namespace art {
namespace mirror {
@@ -47,7 +47,7 @@ class ReferenceTable {
void Dump(std::ostream& os) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
- void VisitRoots(RootVisitor* visitor, void* arg);
+ void VisitRoots(RootCallback* visitor, void* arg, uint32_t tid, RootType root_type);
private:
typedef std::vector<mirror::Object*> Table;