diff options
Diffstat (limited to 'chrome/browser/ui/browser_command_controller.cc')
-rw-r--r-- | chrome/browser/ui/browser_command_controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc index b5dc24d..3579b2b 100644 --- a/chrome/browser/ui/browser_command_controller.cc +++ b/chrome/browser/ui/browser_command_controller.cc @@ -71,7 +71,7 @@ bool HasInternalURL(const NavigationEntry* entry) { // If the |virtual_url()| isn't a chrome:// URL, check if it's actually // view-source: of a chrome:// URL. - if (entry->GetVirtualURL().SchemeIs(chrome::kViewSourceScheme)) + if (entry->GetVirtualURL().SchemeIs(content::kViewSourceScheme)) return entry->GetURL().SchemeIs(chrome::kChromeUIScheme); return false; |