Avi Drissman | 3e1a26c | 2022-09-15 20:26:03 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors |
timav | fe53c2c6 | 2016-11-23 02:35:46 | [diff] [blame] | 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 | |
Nick Diego Yamane | 7b59df54 | 2024-06-10 21:24:54 | [diff] [blame^] | 10 | #include <optional> |
| 11 | |
timav | fe53c2c6 | 2016-11-23 02:35:46 | [diff] [blame] | 12 | #include "base/android/jni_android.h" |
timav | fe53c2c6 | 2016-11-23 02:35:46 | [diff] [blame] | 13 | #include "ui/display/screen_base.h" |
Bo Liu | 71ca79cb | 2019-02-26 18:01:24 | [diff] [blame] | 14 | #include "ui/gfx/geometry/size.h" |
timav | fe53c2c6 | 2016-11-23 02:35:46 | [diff] [blame] | 15 | |
| 16 | namespace ui { |
| 17 | |
Bo Liu | 71ca79cb | 2019-02-26 18:01:24 | [diff] [blame] | 18 | class WindowAndroid; |
| 19 | |
timav | fe53c2c6 | 2016-11-23 02:35:46 | [diff] [blame] | 20 | class DisplayAndroidManager : public display::ScreenBase { |
|
|