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

Unified Diff: content/browser/browser_thread_impl.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_context_core.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_thread_impl.cc
diff --git a/content/browser/browser_thread_impl.cc b/content/browser/browser_thread_impl.cc
index 099ec3b72a4d4c01ec10ddde08202bb9524185d9..326778ea219295c7623793e78d05e314aef34c15 100644
--- a/content/browser/browser_thread_impl.cc
+++ b/content/browser/browser_thread_impl.cc
@@ -365,6 +365,33 @@ bool BrowserThread::CurrentlyOn(ID identifier) {
base::MessageLoop::current();
}
+static const char* GetThreadName(BrowserThread::ID thread) {
+ if (BrowserThread::UI < thread && thread < BrowserThread::ID_COUNT)
+ return g_browser_thread_names[thread];
+ if (thread == BrowserThread::UI)
+ return "Chrome_UIThread";
+ return "Unknown Thread";
+}
+
+// static
+std::string BrowserThread::GetDCheckCurrentlyOnErrorMessage(ID expected) {
+ const std::string& message_loop_name =
+ base::MessageLoop::current()->thread_name();
+ ID actual_browser_thread;
+ const char* actual_name = "Unknown Thread";
+ if (!message_loop_name.empty()) {
+ actual_name = message_loop_name.c_str();
+ } else if (GetCurrentThreadIdentifier(&actual_browser_thread)) {
+ actual_name = GetThreadName(actual_browser_thread);
+ }
+ std::string result = "Must be called on ";
+ result += GetThreadName(expected);
+ result += "; actually called on ";
+ result += actual_name;
+ result += ".";
+ return result;
+}
+
// static
bool BrowserThread::IsMessageLoopValid(ID identifier) {
if (g_globals == NULL)
« no previous file with comments | « no previous file | content/browser/service_worker/service_worker_context_core.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698