Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: ui/ozone/platform/drm/gpu/proxy_helpers.h

Issue 1968923003: Fix include path for moved thread_task_runner_handle.h header in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_DRM_GPU_PROXY_HELPERS_H_ 5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_PROXY_HELPERS_H_
6 #define UI_OZONE_PLATFORM_DRM_GPU_PROXY_HELPERS_H_ 6 #define UI_OZONE_PLATFORM_DRM_GPU_PROXY_HELPERS_H_
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 12
13 namespace ui { 13 namespace ui {
14 14
15 namespace internal { 15 namespace internal {
16 16
17 template <typename... Args> 17 template <typename... Args>
18 void PostAsyncTask( 18 void PostAsyncTask(
19 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner, 19 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
20 const base::Callback<void(Args...)>& callback, 20 const base::Callback<void(Args...)>& callback,
21 Args... args) { 21 Args... args) {
(...skipping 14 matching lines...) Expand all
36 template <typename... Args> 36 template <typename... Args>
37 base::Callback<void(Args...)> CreateSafeCallback( 37 base::Callback<void(Args...)> CreateSafeCallback(
38 const base::Callback<void(Args...)>& callback) { 38 const base::Callback<void(Args...)>& callback) {
39 return base::Bind(&internal::PostAsyncTask<Args...>, 39 return base::Bind(&internal::PostAsyncTask<Args...>,
40 base::ThreadTaskRunnerHandle::Get(), callback); 40 base::ThreadTaskRunnerHandle::Get(), callback);
41 } 41 }
42 42
43 } // namespace ui 43 } // namespace ui
44 44
45 #endif // UI_OZONE_PLATFORM_DRM_GPU_PROXY_HELPERS_H_ 45 #endif // UI_OZONE_PLATFORM_DRM_GPU_PROXY_HELPERS_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread_message_proxy.cc ('k') | ui/ozone/platform/drm/host/drm_display_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698