diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-12 23:23:44 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-12 23:23:44 +0000 |
commit | 092b04eff58cf2d20b6d7e6da0844c8bc5a798fb (patch) | |
tree | 20add3b04716381191280756bb8090ced27d4204 /chrome/browser/browser_main.h | |
parent | 1dfd7ad41fcfccf7525f52755d798278286dec1e (diff) | |
download | chromium_src-092b04eff58cf2d20b6d7e6da0844c8bc5a798fb.zip chromium_src-092b04eff58cf2d20b6d7e6da0844c8bc5a798fb.tar.gz chromium_src-092b04eff58cf2d20b6d7e6da0844c8bc5a798fb.tar.bz2 |
Rename ChromeThread to BrowserThread Final Part:
- Rename chrome_thread.cc to browser_thread.cc
- Rename chrome_thread_unittest.cc to browser_thread_unittest.cc
- Include browser_thread.h instead of chrome_thread.h where needed.
- Fix gyp files according.
BUG=56926
TEST=trybots and compiled locally
Review URL: http://codereview.chromium.org/3643005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62356 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_main.h')
-rw-r--r-- | chrome/browser/browser_main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_main.h b/chrome/browser/browser_main.h index 0648e52..033fb1b 100644 --- a/chrome/browser/browser_main.h +++ b/chrome/browser/browser_main.h @@ -11,7 +11,7 @@ #include "base/scoped_ptr.h" #include "base/tracked_objects.h" -class ChromeThread; +class BrowserThread; class CommandLine; class HighResolutionTimerManager; struct MainFunctionParams; @@ -147,7 +147,7 @@ class BrowserMainParts { scoped_ptr<SystemMonitor> system_monitor_; scoped_ptr<HighResolutionTimerManager> hi_res_timer_manager_; scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_; - scoped_ptr<ChromeThread> main_thread_; + scoped_ptr<BrowserThread> main_thread_; DISALLOW_COPY_AND_ASSIGN(BrowserMainParts); }; |