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

Unified Diff: ui/gfx/android/shared_device_display_info.h

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/shared_device_display_info.h
diff --git a/ui/gfx/android/shared_device_display_info.h b/ui/gfx/android/shared_device_display_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..3ef40d3948fb86530b56c142c1b262619889dbf5
--- /dev/null
+++ b/ui/gfx/android/shared_device_display_info.h
@@ -0,0 +1,64 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_GFX_ANDROID_SHARED_DEVICE_DISPLAY_INFO_H_
+#define UI_GFX_ANDROID_SHARED_DEVICE_DISPLAY_INFO_H_
+
+#include "base/android/scoped_java_ref.h"
+#include "base/basictypes.h"
+#include "base/lazy_instance.h"
+#include "base/synchronization/lock.h"
+#include "ui/gfx/gfx_export.h"
+
+namespace gfx {
+
+// Facilitates access to device information typically only
+// available using the Android SDK, including Display properties.
+class SharedDeviceDisplayInfo {
+ public:
+ SharedDeviceDisplayInfo();
+
+ static int GetDisplayHeight();
+ static int GetDisplayWidth();
+ static int GetBitsPerPixel();
+ static int GetBitsPerComponent();
+ static double GetDIPScale();
+
+ // Registers methods with JNI and returns true if succeeded.
+ static bool RegisterSharedDeviceDisplayInfo(JNIEnv* env);
+
+ static void InvokeUpdate(JNIEnv*,
Alexei Svitkine (slow) 2013/10/11 14:13:06 Nit: don't omit parameter names
+ jobject,
+ jint display_height,
+ jint display_width,
+ jint bits_per_pixel,
+ jint bits_per_component,
+ jdouble dip_scale);
+ private:
+ void UpdateDisplayInfo(JNIEnv*,
+ jobject,
+ jint display_height,
+ jint display_width,
+ jint bits_per_pixel,
+ jint bits_per_component,
+ jdouble dip_scale);
+
+ base::Lock& lock() { return lock_; }
+ static SharedDeviceDisplayInfo* Instance();
Alexei Svitkine (slow) 2013/10/11 14:13:06 Any reason this doesn't use base/memory/singleton.
+
+ base::Lock lock_;
+ base::android::ScopedJavaGlobalRef<jobject> j_device_info_;
+
+ int display_height_;
+ int display_width_;
+ int bits_per_pixel_;
+ int bits_per_component_;
+ double dip_scale_;
+
+ DISALLOW_COPY_AND_ASSIGN(SharedDeviceDisplayInfo);
+};
+
+} // namespace gfx
+
+#endif // UI_GFX_ANDROID_SHARED_DEVICE_DISPLAY_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698