summaryrefslogtreecommitdiffstats
path: root/content/browser/browser_thread_impl.cc
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-02 11:29:39 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-02 11:29:39 +0000
commit631bb742a2798549af691af7357236ce0899b4cb (patch)
tree1852356dc787a9c65e892ea1a57dfc03595d2bb4 /content/browser/browser_thread_impl.cc
parente301da283ab61ff78a108d5ed3246d8b09614ef2 (diff)
downloadchromium_src-631bb742a2798549af691af7357236ce0899b4cb.zip
chromium_src-631bb742a2798549af691af7357236ce0899b4cb.tar.gz
chromium_src-631bb742a2798549af691af7357236ce0899b4cb.tar.bz2
Move BrowserThread to content namespace.
TBR=owners BUG=98716 Review URL: http://codereview.chromium.org/8437002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/browser_thread_impl.cc')
-rw-r--r--content/browser/browser_thread_impl.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/content/browser/browser_thread_impl.cc b/content/browser/browser_thread_impl.cc
index fcccb0c..ef5be1b 100644
--- a/content/browser/browser_thread_impl.cc
+++ b/content/browser/browser_thread_impl.cc
@@ -12,7 +12,7 @@
namespace {
// Friendly names for the well-known threads.
-static const char* browser_thread_names[BrowserThread::ID_COUNT] = {
+static const char* browser_thread_names[content::BrowserThread::ID_COUNT] = {
"", // UI (name assembled in browser_main.cc).
"Chrome_DBThread", // DB
"Chrome_WebKitThread", // WEBKIT
@@ -130,10 +130,6 @@ bool BrowserThreadImpl::PostTaskHelper(
return !!message_loop;
}
-} // namespace content
-
-using content::BrowserThreadImpl;
-
// TODO(joi): Remove
DeprecatedBrowserThread::DeprecatedBrowserThread(BrowserThread::ID identifier)
: BrowserThread(identifier) {
@@ -387,3 +383,5 @@ BrowserThread::GetMessageLoopProxyForThread(
new BrowserThreadMessageLoopProxy(identifier));
return proxy;
}
+
+} // namespace content