| Index: chrome/browser/external_protocol/external_protocol_handler.cc
|
| diff --git a/chrome/browser/external_protocol/external_protocol_handler.cc b/chrome/browser/external_protocol/external_protocol_handler.cc
|
| index faaecc3776ba026d09e19f400ba738cf4a99c15a..a1aac4d5c45cbed291617dd4e461139c522d4c7b 100644
|
| --- a/chrome/browser/external_protocol/external_protocol_handler.cc
|
| +++ b/chrome/browser/external_protocol/external_protocol_handler.cc
|
| @@ -96,7 +96,7 @@ class ExternalDefaultProtocolObserver
|
|
|
| virtual void SetDefaultWebClientUIState(
|
| ShellIntegration::DefaultWebClientUIState state) OVERRIDE {
|
| - DCHECK_EQ(MessageLoop::TYPE_UI, MessageLoop::current()->type());
|
| + DCHECK_EQ(base::MessageLoop::TYPE_UI, base::MessageLoop::current()->type());
|
|
|
| // If we are still working out if we're the default, or we've found
|
| // out we definately are the default, we end here.
|
| @@ -247,7 +247,7 @@ void ExternalProtocolHandler::LaunchUrlWithDelegate(const GURL& url,
|
| int render_process_host_id,
|
| int tab_contents_id,
|
| Delegate* delegate) {
|
| - DCHECK_EQ(MessageLoop::TYPE_UI, MessageLoop::current()->type());
|
| + DCHECK_EQ(base::MessageLoop::TYPE_UI, base::MessageLoop::current()->type());
|
|
|
| // Escape the input scheme to be sure that the command does not
|
| // have parameters unexpected by the external program.
|
| @@ -303,6 +303,6 @@ void ExternalProtocolHandler::RegisterPrefs(PrefRegistrySimple* registry) {
|
|
|
| // static
|
| void ExternalProtocolHandler::PermitLaunchUrl() {
|
| - DCHECK_EQ(MessageLoop::TYPE_UI, MessageLoop::current()->type());
|
| + DCHECK_EQ(base::MessageLoop::TYPE_UI, base::MessageLoop::current()->type());
|
| g_accept_requests = true;
|
| }
|
|
|