| 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_PROXY_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_PROXY_H_ |
| 6 #define UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_PROXY_H_ | 6 #define UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.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 #include "ui/ozone/public/gpu_platform_support_host.h" | 13 #include "ui/ozone/public/gpu_platform_support_host.h" |
| 14 | 14 |
| 15 namespace ui { | 15 namespace ui { |
| 16 | 16 |
| 17 class DeviceManager; | 17 class DeviceManager; |
| 18 class GpuPlatformSupportHostGbm; | 18 class GpuPlatformSupportHostGbm; |
| 19 | 19 |
| 20 struct DisplaySnapshot_Params; | 20 struct DisplaySnapshot_Params; |
| 21 | 21 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 DeviceManager* device_manager_; // Not owned. | 72 DeviceManager* device_manager_; // Not owned. |
| 73 ScopedVector<DisplaySnapshot> displays_; | 73 ScopedVector<DisplaySnapshot> displays_; |
| 74 ObserverList<NativeDisplayObserver> observers_; | 74 ObserverList<NativeDisplayObserver> observers_; |
| 75 | 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(NativeDisplayDelegateProxy); | 76 DISALLOW_COPY_AND_ASSIGN(NativeDisplayDelegateProxy); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace ui | 79 } // namespace ui |
| 80 | 80 |
| 81 #endif // UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_PROXY_H_ | 81 #endif // UI_OZONE_PLATFORM_DRI_CHROMEOS_NATIVE_DISPLAY_DELEGATE_PROXY_H_ |
| OLD | NEW |