Tracking change to make Class.getDeclaredFields/Methods public

(cherry picked from commit d8bef73723ea2d101b36e857968bc15d0887dcee)

Bug: 17375269

(cherry picked from commit b144fce20290535fd362df8e79106c9c35ae9efb)

Change-Id: I2672311ed972cd15b204b25a22a4de179fe7bcb6
diff --git a/runtime/mirror/class.h b/runtime/mirror/class.h
index 2d49121..4383993 100644
--- a/runtime/mirror/class.h
+++ b/runtime/mirror/class.h
@@ -507,7 +507,7 @@
   // The size of java.lang.Class.class.
   static uint32_t ClassClassSize() {
     // The number of vtable entries in java.lang.Class.
-    uint32_t vtable_entries = Object::kVTableLength + 64;
+    uint32_t vtable_entries = Object::kVTableLength + 66;
     return ComputeClassSize(true, vtable_entries, 0, 0, 0, 1, 0);
   }