OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_DRI_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_DRI_H_ |
6 #define UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_DRI_H_ | 6 #define UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_DRI_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
11 #include "ui/display/types/chromeos/native_display_delegate.h" | 11 #include "ui/display/types/native_display_delegate.h" |
12 #include "ui/events/ozone/device/device_event_observer.h" | 12 #include "ui/events/ozone/device/device_event_observer.h" |
13 | 13 |
14 namespace ui { | 14 namespace ui { |
15 | 15 |
16 class DeviceManager; | 16 class DeviceManager; |
17 class DisplaySnapshotDri; | 17 class DisplaySnapshotDri; |
18 class DriConsoleBuffer; | 18 class DriConsoleBuffer; |
19 class DriWrapper; | 19 class DriWrapper; |
20 class ScreenManager; | 20 class ScreenManager; |
21 | 21 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 ScopedVector<const DisplayMode> cached_modes_; | 78 ScopedVector<const DisplayMode> cached_modes_; |
79 ScopedVector<DisplaySnapshotDri> cached_displays_; | 79 ScopedVector<DisplaySnapshotDri> cached_displays_; |
80 ObserverList<NativeDisplayObserver> observers_; | 80 ObserverList<NativeDisplayObserver> observers_; |
81 | 81 |
82 DISALLOW_COPY_AND_ASSIGN(NativeDisplayDelegateDri); | 82 DISALLOW_COPY_AND_ASSIGN(NativeDisplayDelegateDri); |
83 }; | 83 }; |
84 | 84 |
85 } // namespace ui | 85 } // namespace ui |
86 | 86 |
87 #endif // UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_DRI_H_ | 87 #endif // UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_DRI_H_ |
OLD | NEW |