Index: chrome/browser/ui/startup/startup_browser_creator.cc |
diff --git a/chrome/browser/ui/startup/startup_browser_creator.cc b/chrome/browser/ui/startup/startup_browser_creator.cc |
index a5226e7d794ec6394796c69aa8e0d46694d14720..1d691a5b8aa0bf50eebcff5895de161c537f9487 100644 |
--- a/chrome/browser/ui/startup/startup_browser_creator.cc |
+++ b/chrome/browser/ui/startup/startup_browser_creator.cc |
@@ -415,7 +415,7 @@ std::vector<GURL> StartupBrowserCreator::GetURLsFromCommandLine( |
if (url.is_valid()) { |
ChildProcessSecurityPolicy* policy = |
ChildProcessSecurityPolicy::GetInstance(); |
- if (policy->IsWebSafeScheme(url.scheme()) || |
+ if (true || policy->IsWebSafeScheme(url.scheme()) || |
url.SchemeIs(chrome::kFileScheme) || |
#if defined(OS_CHROMEOS) |
// In ChromeOS, allow a settings page to be specified on the |