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

Side by Side Diff: media/base/bind_to_current_loop.h

Issue 1307643003: IWYU for base/memory/scoped_vector.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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 (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 MEDIA_BASE_BIND_TO_CURRENT_LOOP_H_ 5 #ifndef MEDIA_BASE_BIND_TO_CURRENT_LOOP_H_
6 #define MEDIA_BASE_BIND_TO_CURRENT_LOOP_H_ 6 #define MEDIA_BASE_BIND_TO_CURRENT_LOOP_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/scoped_vector.h"
10 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
11 #include "base/thread_task_runner_handle.h" 12 #include "base/thread_task_runner_handle.h"
12 13
13 // This is a helper utility for base::Bind()ing callbacks to the current 14 // This is a helper utility for base::Bind()ing callbacks to the current
14 // MessageLoop. The typical use is when |a| (of class |A|) wants to hand a 15 // MessageLoop. The typical use is when |a| (of class |A|) wants to hand a
15 // callback such as base::Bind(&A::AMethod, a) to |b|, but needs to ensure that 16 // callback such as base::Bind(&A::AMethod, a) to |b|, but needs to ensure that
16 // when |b| executes the callback, it does so on |a|'s current MessageLoop. 17 // when |b| executes the callback, it does so on |a|'s current MessageLoop.
17 // 18 //
18 // Typical usage: request to be called back on the current thread: 19 // Typical usage: request to be called back on the current thread:
19 // other->StartAsyncProcessAndCallMeBack( 20 // other->StartAsyncProcessAndCallMeBack(
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 template<typename T> 61 template<typename T>
61 static base::Callback<T> BindToCurrentLoop( 62 static base::Callback<T> BindToCurrentLoop(
62 const base::Callback<T>& cb) { 63 const base::Callback<T>& cb) {
63 return base::Bind(&internal::TrampolineHelper<T>::Run, 64 return base::Bind(&internal::TrampolineHelper<T>::Run,
64 base::ThreadTaskRunnerHandle::Get(), cb); 65 base::ThreadTaskRunnerHandle::Get(), cb);
65 } 66 }
66 67
67 } // namespace media 68 } // namespace media
68 69
69 #endif // MEDIA_BASE_BIND_TO_CURRENT_LOOP_H_ 70 #endif // MEDIA_BASE_BIND_TO_CURRENT_LOOP_H_
OLDNEW
« no previous file with comments | « mandoline/ui/desktop_ui/browser_manager.h ('k') | media/capture/video/linux/v4l2_capture_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698