diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-11 11:55:26 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-11 11:55:26 +0000 |
commit | 0c7d74fa3286ec04c080a2ffdc5d015c10fe7c37 (patch) | |
tree | b6803b94d704e6986642e36da11532eecffceb9d /chrome/browser/shell_integration_linux.cc | |
parent | a2e6df2c24bd6ecfcd95a0cda680a27a3403bec7 (diff) | |
download | chromium_src-0c7d74fa3286ec04c080a2ffdc5d015c10fe7c37.zip chromium_src-0c7d74fa3286ec04c080a2ffdc5d015c10fe7c37.tar.gz chromium_src-0c7d74fa3286ec04c080a2ffdc5d015c10fe7c37.tar.bz2 |
Rename ChromeThread to BrowserThread Part16:
- Rename entries starting from shell_integration.cc. More 30 files covered.
BUG=56926
TEST=trybots
Review URL: http://codereview.chromium.org/3708001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62136 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_integration_linux.cc')
-rw-r--r-- | chrome/browser/shell_integration_linux.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc index 427d4ad..cc4aeab 100644 --- a/chrome/browser/shell_integration_linux.cc +++ b/chrome/browser/shell_integration_linux.cc @@ -213,7 +213,7 @@ bool ShellIntegration::SetAsDefaultBrowser() { // static ShellIntegration::DefaultBrowserState ShellIntegration::IsDefaultBrowser() { - DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE)); + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); scoped_ptr<base::Environment> env(base::Environment::Create()); @@ -249,7 +249,7 @@ bool ShellIntegration::IsFirefoxDefaultBrowser() { // static bool ShellIntegration::GetDesktopShortcutTemplate( base::Environment* env, std::string* output) { - DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE)); + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); std::vector<FilePath> search_paths; @@ -370,7 +370,7 @@ void ShellIntegration::CreateDesktopShortcut( const ShortcutInfo& shortcut_info, const std::string& shortcut_template) { // TODO(phajdan.jr): Report errors from this function, possibly as infobars. - DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE)); + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); FilePath shortcut_filename = GetDesktopShortcutFilename(shortcut_info.url); if (shortcut_filename.empty()) |