summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/interstitial_page.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-10 18:53:21 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-10 18:53:21 +0000
commit8bac235e7c08c21851934cf771d7d473b3beca4d (patch)
treed4a139e5d1edd3a746011340d4aadbe33e813cba /chrome/browser/tab_contents/interstitial_page.cc
parent9e652efa6c344124a68a41ae41867a3b6b911666 (diff)
downloadchromium_src-8bac235e7c08c21851934cf771d7d473b3beca4d.zip
chromium_src-8bac235e7c08c21851934cf771d7d473b3beca4d.tar.gz
chromium_src-8bac235e7c08c21851934cf771d7d473b3beca4d.tar.bz2
Rename ChromeThread to BrowserThread Part13:
- Rename entries under appcache, automation, chromeos, cocoa, file_system, metrics, policy, prefs, remoting, search_engines and tab_contents. BUG=56926 TEST=trybots Review URL: http://codereview.chromium.org/3660002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62120 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/interstitial_page.cc')
-rw-r--r--chrome/browser/tab_contents/interstitial_page.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/interstitial_page.cc b/chrome/browser/tab_contents/interstitial_page.cc
index 62afe65..660dbec 100644
--- a/chrome/browser/tab_contents/interstitial_page.cc
+++ b/chrome/browser/tab_contents/interstitial_page.cc
@@ -527,7 +527,7 @@ void InterstitialPage::Disable() {
void InterstitialPage::TakeActionOnResourceDispatcher(
ResourceRequestAction action) {
- DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)) <<
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)) <<
"TakeActionOnResourceDispatcher should be called on the main thread.";
if (action == CANCEL || action == RESUME) {
@@ -546,8 +546,8 @@ void InterstitialPage::TakeActionOnResourceDispatcher(
if (!rvh || !g_browser_process->resource_dispatcher_host())
return;
- ChromeThread::PostTask(
- ChromeThread::IO, FROM_HERE,
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
new ResourceRequestTask(original_child_id_, original_rvh_id_, action));
}