diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-10 22:24:48 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-10 22:24:48 +0000 |
commit | d04e76609929454e853117ea8c544774e48d50ed (patch) | |
tree | 4f86e1ab973913bf5238d036a496028b0774f6c1 /chrome/browser/browser_main.cc | |
parent | cc4c9e1dca4f95d322aedff8e520621f4cee5087 (diff) | |
download | chromium_src-d04e76609929454e853117ea8c544774e48d50ed.zip chromium_src-d04e76609929454e853117ea8c544774e48d50ed.tar.gz chromium_src-d04e76609929454e853117ea8c544774e48d50ed.tar.bz2 |
Rename ChromeThread to BrowserThread Part14:
- Rename the entries under the first 40 files.
BUG=56926
TEST=trybots
Review URL: http://codereview.chromium.org/3667002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_main.cc')
-rw-r--r-- | chrome/browser/browser_main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc index 1e556d3..b00a413 100644 --- a/chrome/browser/browser_main.cc +++ b/chrome/browser/browser_main.cc @@ -431,8 +431,8 @@ void BrowserMainParts::InitializeMainThread() { main_message_loop().set_thread_name(kThreadName); // Register the main thread by instantiating it, but don't call any methods. - main_thread_.reset(new ChromeThread(ChromeThread::UI, - MessageLoop::current())); + main_thread_.reset(new BrowserThread(BrowserThread::UI, + MessageLoop::current())); } // ----------------------------------------------------------------------------- @@ -524,7 +524,7 @@ void InitializeNetworkOptions(const CommandLine& parsed_command_line) { } // Creates key child threads. We need to do this explicitly since -// ChromeThread::PostTask silently deletes a posted task if the target message +// BrowserThread::PostTask silently deletes a posted task if the target message // loop isn't created. void CreateChildThreads(BrowserProcessImpl* process) { process->db_thread(); |