diff options
author | 2011-08-23 16:02:11 -0700 | |
---|---|---|
committer | 2011-08-31 09:46:57 -0700 | |
commit | 1f87008b165d26541d832ff805250afdc89c253d (patch) | |
tree | a84122b3757b8f856eb0656a951ed6621b6d01a8 /src/class_linker.h | |
parent | c5bfa8f49d8548d7c685a99b411311ef56bedffa (diff) |
Add HeapTest and make GC work enough to pass it
Change-Id: If06eaef2921b64b3226bfd347acaec60ec993e67
Diffstat (limited to 'src/class_linker.h')
-rw-r--r-- | src/class_linker.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/class_linker.h b/src/class_linker.h index 6e13aa7d2c..1f233b0c8e 100644 --- a/src/class_linker.h +++ b/src/class_linker.h @@ -18,6 +18,8 @@ #include "gtest/gtest.h" +class ClassLoader; + namespace art { class ClassLinker { @@ -192,8 +194,7 @@ class ClassLinker { void LoadMethod(const DexFile& dex_file, const DexFile::Method& dex_method, Class* klass, - Method* dst, - bool is_direct); + Method* dst); Class* LookupClass(const StringPiece& descriptor, const ClassLoader* class_loader); |