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

Side by Side Diff: ui/android/display_android_manager.h

Issue 2595263002: Introduce ViewRoot forwarding input/view events to native (Closed)
Patch Set: view_root.java_obj_... Created 3 years, 11 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
« no previous file with comments | « ui/android/BUILD.gn ('k') | ui/android/display_android_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 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_ANDROID_DISPLAY_ANDROID_MANAGER_H_ 5 #ifndef UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_
6 #define UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_ 6 #define UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "ui/android/ui_android_export.h"
12 #include "ui/display/screen_base.h" 13 #include "ui/display/screen_base.h"
13 14
14 namespace ui { 15 namespace ui {
15 16
16 class DisplayAndroidManager : public display::ScreenBase { 17 class UI_ANDROID_EXPORT DisplayAndroidManager : public display::ScreenBase {
17 public: 18 public:
18 ~DisplayAndroidManager() override; 19 ~DisplayAndroidManager() override;
19 20
21 // Prefer using |Screen::GetScreen()|. Only use this to avoid casting.
22 static DisplayAndroidManager* GetInstance();
23
24 // This method is needed since NativeWindow is not a NativeView on Android.
25 display::Display GetDisplayNearestWindowAndroid(
26 gfx::NativeWindow window) const;
27
20 // Screen interface. 28 // Screen interface.
21 29
22 display::Display GetDisplayNearestWindow(gfx::NativeView view) const override; 30 display::Display GetDisplayNearestWindow(gfx::NativeView view) const override;
23 display::Display GetDisplayNearestPoint( 31 display::Display GetDisplayNearestPoint(
24 const gfx::Point& point) const override; 32 const gfx::Point& point) const override;
25 display::Display GetDisplayMatching( 33 display::Display GetDisplayMatching(
26 const gfx::Rect& match_rect) const override; 34 const gfx::Rect& match_rect) const override;
27 35
28 // Methods called from Java. 36 // Methods called from Java.
29 37
(...skipping 20 matching lines...) Expand all
50 DisplayAndroidManager(); 58 DisplayAndroidManager();
51 59
52 int primary_display_id_ = 0; 60 int primary_display_id_ = 0;
53 61
54 DISALLOW_COPY_AND_ASSIGN(DisplayAndroidManager); 62 DISALLOW_COPY_AND_ASSIGN(DisplayAndroidManager);
55 }; 63 };
56 64
57 } // namespace ui 65 } // namespace ui
58 66
59 #endif // UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_ 67 #endif // UI_ANDROID_DISPLAY_ANDROID_MANAGER_H_
OLDNEW
« no previous file with comments | « ui/android/BUILD.gn ('k') | ui/android/display_android_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698