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

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

Issue 2122543002: Replace Closure in TaskRunner::PostTask with OneShotCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@07_oneshot
Patch Set: fix Created 4 years, 3 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/threading/thread.h" 8 #include "base/threading/thread.h"
9 #include "ios/web/public/web_thread.h" 9 #include "ios/web/public/web_thread.h"
10 10
(...skipping 30 matching lines...) Expand all
41 // the thread id from the callstack alone in crash dumps. 41 // the thread id from the callstack alone in crash dumps.
42 void UIThreadRun(base::RunLoop* run_loop); 42 void UIThreadRun(base::RunLoop* run_loop);
43 void DBThreadRun(base::RunLoop* run_loop); 43 void DBThreadRun(base::RunLoop* run_loop);
44 void FileThreadRun(base::RunLoop* run_loop); 44 void FileThreadRun(base::RunLoop* run_loop);
45 void FileUserBlockingThreadRun(base::RunLoop* run_loop); 45 void FileUserBlockingThreadRun(base::RunLoop* run_loop);
46 void CacheThreadRun(base::RunLoop* run_loop); 46 void CacheThreadRun(base::RunLoop* run_loop);
47 void IOThreadRun(base::RunLoop* run_loop); 47 void IOThreadRun(base::RunLoop* run_loop);
48 48
49 static bool PostTaskHelper(WebThread::ID identifier, 49 static bool PostTaskHelper(WebThread::ID identifier,
50 const tracked_objects::Location& from_here, 50 const tracked_objects::Location& from_here,
51 const base::Closure& task, 51 base::OnceClosure task,
52 base::TimeDelta delay, 52 base::TimeDelta delay,
53 bool nestable); 53 bool nestable);
54 54
55 // Common initialization code for the constructors. 55 // Common initialization code for the constructors.
56 void Initialize(); 56 void Initialize();
57 57
58 // Performs cleanup that needs to happen on the IO thread before calling the 58 // Performs cleanup that needs to happen on the IO thread before calling the
59 // embedder's CleanUp function. 59 // embedder's CleanUp function.
60 void IOThreadPreCleanUp(); 60 void IOThreadPreCleanUp();
61 61
62 // For testing. 62 // For testing.
63 friend class TestWebThreadBundle; 63 friend class TestWebThreadBundle;
64 friend class TestWebThreadBundleImpl; 64 friend class TestWebThreadBundleImpl;
65 friend class WebTestSuiteListener; 65 friend class WebTestSuiteListener;
66 static void FlushThreadPoolHelperForTesting(); 66 static void FlushThreadPoolHelperForTesting();
67 67
68 // The identifier of this thread. Only one thread can exist with a given 68 // The identifier of this thread. Only one thread can exist with a given
69 // identifier at a given time. 69 // identifier at a given time.
70 ID identifier_; 70 ID identifier_;
71 }; 71 };
72 72
73 } // namespace web 73 } // namespace web
74 74
75 #endif // IOS_WEB_WEB_THREAD_IMPL_H_ 75 #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