Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: ui/gfx/android/gfx_jni_registrar.cc

Issue 26129009: Cache DeviceDisplayInfo data in shared structure on native side to avoid frequent JNI calls. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Updated by review comments. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/gfx/android/gfx_jni_registrar.cc
diff --git a/ui/gfx/android/gfx_jni_registrar.cc b/ui/gfx/android/gfx_jni_registrar.cc
index 8aa8551085a70526b01f2bd60a8dc1b0b2fb5aff..75cd62e6102c70d5aad731460cc2b3822232c585 100644
--- a/ui/gfx/android/gfx_jni_registrar.cc
+++ b/ui/gfx/android/gfx_jni_registrar.cc
@@ -6,14 +6,15 @@
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
-#include "ui/gfx/android/device_display_info.h"
#include "ui/gfx/android/java_bitmap.h"
+#include "ui/gfx/android/shared_device_display_info.h"
namespace gfx {
namespace android {
static base::android::RegistrationMethod kGfxRegisteredMethods[] = {
- { "DeviceDisplayInfo", gfx::DeviceDisplayInfo::RegisterDeviceDisplayInfo },
+ { "SharedDeviceDisplayInfo",
+ gfx::SharedDeviceDisplayInfo::RegisterSharedDeviceDisplayInfo },
Alexei Svitkine (slow) 2013/10/22 21:01:54 Nit: Remove gfx:: prefix here and below since this
ostap 2013/10/22 21:40:42 Done.
{ "JavaBitmap", gfx::JavaBitmap::RegisterJavaBitmap },
};

Powered by Google App Engine
This is Rietveld 408576698