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_DRI_GPU_PLATFORM_SUPPORT_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ |
6 #define UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ | 6 #define UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ |
7 | 7 |
8 #include "base/containers/scoped_ptr_hash_map.h" | 8 #include "base/containers/scoped_ptr_hash_map.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
11 #include "ipc/message_filter.h" | 11 #include "ipc/message_filter.h" |
12 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
13 #include "ui/ozone/public/gpu_platform_support.h" | 13 #include "ui/ozone/public/gpu_platform_support.h" |
14 | 14 |
15 class SkBitmap; | 15 class SkBitmap; |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class FileDescriptor; | |
19 class FilePath; | 18 class FilePath; |
20 class SingleThreadTaskRunner; | 19 class SingleThreadTaskRunner; |
| 20 struct FileDescriptor; |
21 } | 21 } |
22 | 22 |
23 namespace gfx { | 23 namespace gfx { |
24 class Point; | 24 class Point; |
25 class Rect; | 25 class Rect; |
26 } | 26 } |
27 | 27 |
28 namespace ui { | 28 namespace ui { |
29 | 29 |
30 class DriSurfaceFactory; | 30 class DriSurfaceFactory; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 ScreenManager* screen_manager_; // Not owned. | 88 ScreenManager* screen_manager_; // Not owned. |
89 | 89 |
90 scoped_ptr<NativeDisplayDelegateDri> ndd_; | 90 scoped_ptr<NativeDisplayDelegateDri> ndd_; |
91 ScopedVector<GpuPlatformSupport> handlers_; | 91 ScopedVector<GpuPlatformSupport> handlers_; |
92 scoped_refptr<IPC::MessageFilter> filter_; | 92 scoped_refptr<IPC::MessageFilter> filter_; |
93 }; | 93 }; |
94 | 94 |
95 } // namespace ui | 95 } // namespace ui |
96 | 96 |
97 #endif // UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ | 97 #endif // UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ |
OLD | NEW |