OLD | NEW |
| (Empty) |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_ | |
6 #define UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 #include "base/android/jni_android.h" | |
11 #include "base/macros.h" | |
12 #include "ui/display/screen_base.h" | |
13 | |
14 namespace ui { | |
15 | |
16 class DisplayAndroidManager : public display::ScreenBase { | |
17 public: | |
18 ~DisplayAndroidManager() override; | |
19 | |
20 // Screen interface. | |
21 | |
22 display::Display GetDisplayNearestWindow(gfx::NativeView view) const override; | |
23 display::Display GetDisplayNearestPoint( | |
24 const gfx::Point& point) const override; | |
25 display::Display GetDisplayMatching( | |
26 const gfx::Rect& match_rect) const override; | |
27 | |
28 // Methods called from Java. | |
29 | |
30 void UpdateDisplay(JNIEnv* env, | |
31 const base::android::JavaParamRef<jobject>& jobject, | |
32 jint sdkDisplayId, | |
33 jint physicalWidth, | |
34 jint physicalHeight, | |
35 jint width, | |
36 jint height, | |
37 jfloat dipScale, | |
38 jint rotationDegrees, | |
39 jint bitsPerPixel, | |
40 jint bitsPerComponent); | |
41 void RemoveDisplay(JNIEnv* env, | |
42 const base::android::JavaParamRef<jobject>& jobject, | |
43 jint sdkDisplayId); | |
44 void SetPrimaryDisplayId(JNIEnv* env, | |
45 const base::android::JavaParamRef<jobject>& jobject, | |
46 jint sdkDisplayId); | |
47 | |
48 private: | |
49 friend void SetScreenAndroid(); | |
50 DisplayAndroidManager(); | |
51 | |
52 int primary_display_id_ = 0; | |
53 | |
54 DISALLOW_COPY_AND_ASSIGN(DisplayAndroidManager); | |
55 }; | |
56 | |
57 } // namespace ui | |
58 | |
59 #endif // UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_ | |
OLD | NEW |