| 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 SERVICES_UI_WS_PLATFORM_DISPLAY_H_ | 5 #ifndef SERVICES_UI_WS_PLATFORM_DISPLAY_H_ |
| 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_H_ | 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "services/ui/display/viewport_metrics.h" | 14 #include "services/ui/display/viewport_metrics.h" |
| 15 #include "services/ui/public/interfaces/cursor.mojom.h" | 15 #include "services/ui/public/interfaces/cursor.mojom.h" |
| 16 | 16 |
| 17 namespace gfx { | 17 namespace gfx { |
| 18 class Rect; | 18 class Rect; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace gpu { | |
| 22 class GpuChannelHost; | |
| 23 } | |
| 24 | |
| 25 namespace ui { | 21 namespace ui { |
| 26 | 22 |
| 27 struct TextInputState; | 23 struct TextInputState; |
| 28 | 24 |
| 29 namespace ws { | 25 namespace ws { |
| 30 | 26 |
| 31 class FrameGenerator; | 27 class FrameGenerator; |
| 32 class PlatformDisplayDelegate; | 28 class PlatformDisplayDelegate; |
| 33 class PlatformDisplayFactory; | 29 class PlatformDisplayFactory; |
| 34 struct PlatformDisplayInitParams; | 30 struct PlatformDisplayInitParams; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 private: | 74 private: |
| 79 // Static factory instance (always NULL for non-test). | 75 // Static factory instance (always NULL for non-test). |
| 80 static PlatformDisplayFactory* factory_; | 76 static PlatformDisplayFactory* factory_; |
| 81 }; | 77 }; |
| 82 | 78 |
| 83 | 79 |
| 84 } // namespace ws | 80 } // namespace ws |
| 85 } // namespace ui | 81 } // namespace ui |
| 86 | 82 |
| 87 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_H_ | 83 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_H_ |
| OLD | NEW |