Index: chrome/browser/ui/browser_init.cc |
diff --git a/chrome/browser/ui/browser_init.cc b/chrome/browser/ui/browser_init.cc |
index e0a7ff5b572bf0a69d839b7800a724b0906bc2c8..478c1b7ef0b1e25cc728dedc84c0dbb66804caca 100644 |
--- a/chrome/browser/ui/browser_init.cc |
+++ b/chrome/browser/ui/browser_init.cc |
@@ -765,7 +765,7 @@ Browser* BrowserInit::LaunchWithProfile::OpenTabsInBrowser( |
// This avoids us getting into an infinite loop asking ourselves to open |
// a URL, should the handler be (incorrectly) configured to be us. Anyone |
// asking us to open such a URL should really ask the handler directly. |
- if (!process_startup && !URLRequest::IsHandledURL(tabs[i].url)) |
+ if (!process_startup && !net::URLRequest::IsHandledURL(tabs[i].url)) |
continue; |
int add_types = first_tab ? TabStripModel::ADD_SELECTED : |