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

Side by Side Diff: content/public/browser/browser_thread.h

Issue 191763002: Add a BrowserThread::DCheckCurrentlyOn function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Jói's nit Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/service_worker/service_worker_context_core.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 #include "base/logging.h"
13 #include "base/message_loop/message_loop_proxy.h" 14 #include "base/message_loop/message_loop_proxy.h"
14 #include "base/task_runner_util.h" 15 #include "base/task_runner_util.h"
15 #include "base/time/time.h" 16 #include "base/time/time.h"
16 #include "content/common/content_export.h" 17 #include "content/common/content_export.h"
17 18
18 #if defined(UNIT_TEST)
19 #include "base/logging.h"
20 #endif // UNIT_TEST
21
22 namespace base { 19 namespace base {
23 class MessageLoop; 20 class MessageLoop;
24 class SequencedWorkerPool; 21 class SequencedWorkerPool;
25 class Thread; 22 class Thread;
26 } 23 }
27 24
28 namespace content { 25 namespace content {
29 26
30 class BrowserThreadDelegate; 27 class BrowserThreadDelegate;
31 class BrowserThreadImpl; 28 class BrowserThreadImpl;
32 29
30 // Use DCHECK_CURRENTLY_ON(BrowserThread::ID) to assert that a function can only
31 // be called on the named BrowserThread.
32 #define DCHECK_CURRENTLY_ON(thread_identifier) \
33 (DCHECK(::content::BrowserThread::CurrentlyOn(thread_identifier)) \
34 << ::content::BrowserThread::GetDCheckCurrentlyOnErrorMessage( \
35 thread_identifier))
36
33 /////////////////////////////////////////////////////////////////////////////// 37 ///////////////////////////////////////////////////////////////////////////////
34 // BrowserThread 38 // BrowserThread
35 // 39 //
36 // Utility functions for threads that are known by a browser-wide 40 // Utility functions for threads that are known by a browser-wide
37 // name. For example, there is one IO thread for the entire browser 41 // name. For example, there is one IO thread for the entire browser
38 // process, and various pieces of code find it useful to retrieve a 42 // process, and various pieces of code find it useful to retrieve a
39 // pointer to the IO thread's message loop. 43 // pointer to the IO thread's message loop.
40 // 44 //
41 // Invoke a task by thread ID: 45 // Invoke a task by thread ID:
42 // 46 //
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 // Returns the thread pool used for blocking file I/O. Use this object to 185 // Returns the thread pool used for blocking file I/O. Use this object to
182 // perform random blocking operations such as file writes or querying the 186 // perform random blocking operations such as file writes or querying the
183 // Windows registry. 187 // Windows registry.
184 static base::SequencedWorkerPool* GetBlockingPool(); 188 static base::SequencedWorkerPool* GetBlockingPool();
185 189
186 // Callable on any thread. Returns whether the given well-known thread is 190 // Callable on any thread. Returns whether the given well-known thread is
187 // initialized. 191 // initialized.
188 static bool IsThreadInitialized(ID identifier); 192 static bool IsThreadInitialized(ID identifier);
189 193
190 // Callable on any thread. Returns whether you're currently on a particular 194 // Callable on any thread. Returns whether you're currently on a particular
191 // thread. 195 // thread. To DCHECK this, use the DCHECK_CURRENTLY_ON() macro above.
192 static bool CurrentlyOn(ID identifier); 196 static bool CurrentlyOn(ID identifier);
193 197
194 // Callable on any thread. Returns whether the threads message loop is valid. 198 // Callable on any thread. Returns whether the threads message loop is valid.
195 // If this returns false it means the thread is in the process of shutting 199 // If this returns false it means the thread is in the process of shutting
196 // down. 200 // down.
197 static bool IsMessageLoopValid(ID identifier); 201 static bool IsMessageLoopValid(ID identifier);
198 202
199 // If the current message loop is one of the known threads, returns true and 203 // If the current message loop is one of the known threads, returns true and
200 // sets identifier to its ID. Otherwise returns false. 204 // sets identifier to its ID. Otherwise returns false.
201 static bool GetCurrentThreadIdentifier(ID* identifier); 205 static bool GetCurrentThreadIdentifier(ID* identifier);
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 // private: 263 // private:
260 // friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>; 264 // friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>;
261 // friend class base::DeleteHelper<Foo>; 265 // friend class base::DeleteHelper<Foo>;
262 // 266 //
263 // ~Foo(); 267 // ~Foo();
264 struct DeleteOnUIThread : public DeleteOnThread<UI> { }; 268 struct DeleteOnUIThread : public DeleteOnThread<UI> { };
265 struct DeleteOnIOThread : public DeleteOnThread<IO> { }; 269 struct DeleteOnIOThread : public DeleteOnThread<IO> { };
266 struct DeleteOnFileThread : public DeleteOnThread<FILE> { }; 270 struct DeleteOnFileThread : public DeleteOnThread<FILE> { };
267 struct DeleteOnDBThread : public DeleteOnThread<DB> { }; 271 struct DeleteOnDBThread : public DeleteOnThread<DB> { };
268 272
273 // Returns an appropriate error message for when DCHECK_CURRENTLY_ON() fails.
274 static std::string GetDCheckCurrentlyOnErrorMessage(ID expected);
275
269 private: 276 private:
270 friend class BrowserThreadImpl; 277 friend class BrowserThreadImpl;
271 278
272 BrowserThread() {} 279 BrowserThread() {}
273 DISALLOW_COPY_AND_ASSIGN(BrowserThread); 280 DISALLOW_COPY_AND_ASSIGN(BrowserThread);
274 }; 281 };
275 282
276 } // namespace content 283 } // namespace content
277 284
278 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ 285 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_
OLDNEW
« no previous file with comments | « content/browser/service_worker/service_worker_context_core.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698