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

Side by Side Diff: ui/gfx/android/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 patch 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_GFX_ANDROID_DEVICE_DISPLAY_INFO_H_ 5 #ifndef UI_GFX_ANDROID_DEVICE_DISPLAY_INFO_H_
6 #define UI_GFX_ANDROID_DEVICE_DISPLAY_INFO_H_ 6 #define UI_GFX_ANDROID_DEVICE_DISPLAY_INFO_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 #include <string> 9 #include <string>
10 10
11 #include "base/android/scoped_java_ref.h"
12 #include "base/basictypes.h" 11 #include "base/basictypes.h"
13 #include "ui/gfx/gfx_export.h" 12 #include "ui/gfx/gfx_export.h"
14 13
15 namespace gfx { 14 namespace gfx {
16 15
17 // Facilitates access to device information typically only 16 // Facilitates access to device information typically only
18 // available using the Android SDK, including Display properties. 17 // available using the Android SDK, including Display properties.
19 class GFX_EXPORT DeviceDisplayInfo { 18 class GFX_EXPORT DeviceDisplayInfo {
20 public: 19 public:
21 DeviceDisplayInfo(); 20 DeviceDisplayInfo();
22 ~DeviceDisplayInfo(); 21 ~DeviceDisplayInfo();
23 22
24 // Returns display height in physical pixels. 23 // Returns display height in physical pixels.
25 int GetDisplayHeight(); 24 int GetDisplayHeight();
26 25
27 // Returns display width in physical pixels. 26 // Returns display width in physical pixels.
28 int GetDisplayWidth(); 27 int GetDisplayWidth();
29 28
30 // Returns number of bits per pixel. 29 // Returns number of bits per pixel.
31 int GetBitsPerPixel(); 30 int GetBitsPerPixel();
32 31
33 // Returns number of bits per component. 32 // Returns number of bits per component.
34 int GetBitsPerComponent(); 33 int GetBitsPerComponent();
35 34
36 // Returns a scaling factor for Density Independent Pixel unit 35 // Returns a scaling factor for Density Independent Pixel unit
37 // (1.0 is 160dpi, 0.75 is 120dpi, 2.0 is 320dpi). 36 // (1.0 is 160dpi, 0.75 is 120dpi, 2.0 is 320dpi).
38 double GetDIPScale(); 37 double GetDIPScale();
39 38
40 // Registers methods with JNI and returns true if succeeded.
41 static bool RegisterDeviceDisplayInfo(JNIEnv* env);
42
43 private: 39 private:
44 base::android::ScopedJavaGlobalRef<jobject> j_device_info_;
45
46 DISALLOW_COPY_AND_ASSIGN(DeviceDisplayInfo); 40 DISALLOW_COPY_AND_ASSIGN(DeviceDisplayInfo);
47 }; 41 };
48 42
49 } // namespace gfx 43 } // namespace gfx
50 44
51 #endif // UI_GFX_ANDROID_DEVICE_DISPLAY_INFO_H_ 45 #endif // UI_GFX_ANDROID_DEVICE_DISPLAY_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698