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

Side by Side Diff: ios/web/web_thread_impl.h

Issue 2726523002: Pass Callback to TaskRunner by value and consume it on invocation (1) (Closed)
Patch Set: erase Closure* Created 3 years, 8 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
« no previous file with comments | « ios/web/public/web_thread.h ('k') | ios/web/web_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 IOS_WEB_WEB_THREAD_IMPL_H_ 5 #ifndef IOS_WEB_WEB_THREAD_IMPL_H_
6 #define IOS_WEB_WEB_THREAD_IMPL_H_ 6 #define IOS_WEB_WEB_THREAD_IMPL_H_
7 7
8 #include "base/callback.h"
8 #include "base/threading/thread.h" 9 #include "base/threading/thread.h"
9 #include "ios/web/public/web_thread.h" 10 #include "ios/web/public/web_thread.h"
10 11
11 namespace web { 12 namespace web {
12 13
13 class WebTestSuiteListener; 14 class WebTestSuiteListener;
14 15
15 class WebThreadImpl : public WebThread, public base::Thread { 16 class WebThreadImpl : public WebThread, public base::Thread {
16 public: 17 public:
17 // Construct a WebThreadImpl with the supplied identifier. It is an error 18 // Construct a WebThreadImpl with the supplied identifier. It is an error
(...skipping 23 matching lines...) Expand all
41 // the thread id from the callstack alone in crash dumps. 42 // the thread id from the callstack alone in crash dumps.
42 void UIThreadRun(base::RunLoop* run_loop); 43 void UIThreadRun(base::RunLoop* run_loop);
43 void DBThreadRun(base::RunLoop* run_loop); 44 void DBThreadRun(base::RunLoop* run_loop);
44 void FileThreadRun(base::RunLoop* run_loop); 45 void FileThreadRun(base::RunLoop* run_loop);
45 void FileUserBlockingThreadRun(base::RunLoop* run_loop); 46 void FileUserBlockingThreadRun(base::RunLoop* run_loop);
46 void CacheThreadRun(base::RunLoop* run_loop); 47 void CacheThreadRun(base::RunLoop* run_loop);
47 void IOThreadRun(base::RunLoop* run_loop); 48 void IOThreadRun(base::RunLoop* run_loop);
48 49
49 static bool PostTaskHelper(WebThread::ID identifier, 50 static bool PostTaskHelper(WebThread::ID identifier,
50 const tracked_objects::Location& from_here, 51 const tracked_objects::Location& from_here,
51 const base::Closure& task, 52 base::Closure task,
52 base::TimeDelta delay, 53 base::TimeDelta delay,
53 bool nestable); 54 bool nestable);
54 55
55 // Common initialization code for the constructors. 56 // Common initialization code for the constructors.
56 void Initialize(); 57 void Initialize();
57 58
58 // Performs cleanup that needs to happen on the IO thread before calling the 59 // Performs cleanup that needs to happen on the IO thread before calling the
59 // embedder's CleanUp function. 60 // embedder's CleanUp function.
60 void IOThreadPreCleanUp(); 61 void IOThreadPreCleanUp();
61 62
62 // For testing. 63 // For testing.
63 friend class TestWebThreadBundle; 64 friend class TestWebThreadBundle;
64 friend class TestWebThreadBundleImpl; 65 friend class TestWebThreadBundleImpl;
65 friend class WebTestSuiteListener; 66 friend class WebTestSuiteListener;
66 static void FlushThreadPoolHelperForTesting(); 67 static void FlushThreadPoolHelperForTesting();
67 68
68 // The identifier of this thread. Only one thread can exist with a given 69 // The identifier of this thread. Only one thread can exist with a given
69 // identifier at a given time. 70 // identifier at a given time.
70 ID identifier_; 71 ID identifier_;
71 }; 72 };
72 73
73 } // namespace web 74 } // namespace web
74 75
75 #endif // IOS_WEB_WEB_THREAD_IMPL_H_ 76 #endif // IOS_WEB_WEB_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « ios/web/public/web_thread.h ('k') | ios/web/web_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698