| 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/platform/dri/dri_helper_thread.h" | |
| 14 #include "ui/ozone/public/gpu_platform_support.h" | 13 #include "ui/ozone/public/gpu_platform_support.h" |
| 15 | 14 |
| 16 class SkBitmap; | 15 class SkBitmap; |
| 17 | 16 |
| 18 namespace base { | 17 namespace base { |
| 19 class FilePath; | 18 class FilePath; |
| 19 class SingleThreadTaskRunner; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace gfx { | 22 namespace gfx { |
| 23 class Point; | 23 class Point; |
| 24 class Rect; | 24 class Rect; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace ui { | 27 namespace ui { |
| 28 | 28 |
| 29 class DriSurfaceFactory; | 29 class DriSurfaceFactory; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 void OnRefreshNativeDisplays(); | 70 void OnRefreshNativeDisplays(); |
| 71 void OnConfigureNativeDisplay(int64_t id, | 71 void OnConfigureNativeDisplay(int64_t id, |
| 72 const DisplayMode_Params& mode, | 72 const DisplayMode_Params& mode, |
| 73 const gfx::Point& origin); | 73 const gfx::Point& origin); |
| 74 void OnDisableNativeDisplay(int64_t id); | 74 void OnDisableNativeDisplay(int64_t id); |
| 75 void OnTakeDisplayControl(); | 75 void OnTakeDisplayControl(); |
| 76 void OnRelinquishDisplayControl(); | 76 void OnRelinquishDisplayControl(); |
| 77 void OnAddGraphicsDevice(const base::FilePath& path); | 77 void OnAddGraphicsDevice(const base::FilePath& path); |
| 78 void OnRemoveGraphicsDevice(const base::FilePath& path); | 78 void OnRemoveGraphicsDevice(const base::FilePath& path); |
| 79 | 79 |
| 80 void OnFilterAdded(); | 80 void SetIOTaskRunner( |
| 81 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); |
| 81 | 82 |
| 82 IPC::Sender* sender_; // Not owned. | 83 IPC::Sender* sender_; // Not owned. |
| 83 DriWrapper* drm_; // Not owned. | 84 DriWrapper* drm_; // Not owned. |
| 84 DriWindowDelegateManager* window_manager_; // Not owned. | 85 DriWindowDelegateManager* window_manager_; // Not owned. |
| 85 ScreenManager* screen_manager_; // Not owned. | 86 ScreenManager* screen_manager_; // Not owned. |
| 86 | 87 |
| 87 DriHelperThread helper_thread_; | |
| 88 scoped_ptr<NativeDisplayDelegateDri> ndd_; | 88 scoped_ptr<NativeDisplayDelegateDri> ndd_; |
| 89 ScopedVector<GpuPlatformSupport> handlers_; | 89 ScopedVector<GpuPlatformSupport> handlers_; |
| 90 scoped_refptr<IPC::MessageFilter> filter_; | 90 scoped_refptr<IPC::MessageFilter> filter_; |
| 91 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 } // namespace ui | 94 } // namespace ui |
| 94 | 95 |
| 95 #endif // UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ | 96 #endif // UI_OZONE_PLATFORM_DRI_DRI_GPU_PLATFORM_SUPPORT_H_ |
| OLD | NEW |