| Index: chrome/browser/browser_main.cc
|
| diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
|
| index 0d3ddb32fc34cb866d5159985d2a4d03dca2eac1..b86e260dbeee4691539d9092733d803b9636b755 100644
|
| --- a/chrome/browser/browser_main.cc
|
| +++ b/chrome/browser/browser_main.cc
|
| @@ -1076,8 +1076,8 @@ int BrowserMain(const MainFunctionParams& parameters) {
|
| if (parsed_command_line.HasSwitch(switches::kImport) ||
|
| parsed_command_line.HasSwitch(switches::kImportFromFile)) {
|
| // We use different BrowserProcess when importing so no GoogleURLTracker is
|
| - // instantiated (as it makes a URLRequest and we don't have an IO thread,
|
| - // see bug #1292702).
|
| + // instantiated (as it makes a net::URLRequest and we don't have an IO
|
| + // thread, see bug #1292702).
|
| browser_process.reset(new FirstRunBrowserProcess(parsed_command_line));
|
| is_first_run = false;
|
| } else {
|
| @@ -1321,7 +1321,7 @@ int BrowserMain(const MainFunctionParams& parameters) {
|
|
|
| // Allow access to file:// on ChromeOS for tests.
|
| if (parsed_command_line.HasSwitch(switches::kAllowFileAccess)) {
|
| - URLRequest::AllowFileAccess();
|
| + net::URLRequest::AllowFileAccess();
|
| }
|
|
|
| // There are two use cases for kLoginUser:
|
|
|