Index: components/crash/app/breakpad_win.cc |
diff --git a/components/crash/app/breakpad_win.cc b/components/crash/app/breakpad_win.cc |
index 862174cab411e8fd2c034a3e29cc3a180367b0be..1c3af66fd8013ad7de4abbfe2ffdd8e91ede3f0b 100644 |
--- a/components/crash/app/breakpad_win.cc |
+++ b/components/crash/app/breakpad_win.cc |
@@ -456,7 +456,7 @@ static void InitPipeNameEnvVar(bool is_per_user_install) { |
GetCrashReporterClient()->ReportingIsEnforcedByPolicy( |
&crash_reporting_enabled); |
- const CommandLine& command = *CommandLine::ForCurrentProcess(); |
+ const base::CommandLine& command = *base::CommandLine::ForCurrentProcess(); |
bool use_crash_service = !controlled_by_policy && |
(command.HasSwitch(switches::kNoErrorDialogs) || |
GetCrashReporterClient()->IsRunningUnattended()); |
@@ -501,7 +501,7 @@ void InitDefaultCrashCallback(LPTOP_LEVEL_EXCEPTION_FILTER filter) { |
} |
void InitCrashReporter(const std::string& process_type_switch) { |
- const CommandLine& command = *CommandLine::ForCurrentProcess(); |
+ const base::CommandLine& command = *base::CommandLine::ForCurrentProcess(); |
if (command.HasSwitch(switches::kDisableBreakpad)) |
return; |
@@ -523,8 +523,8 @@ void InitCrashReporter(const std::string& process_type_switch) { |
CrashKeysWin* keeper = new CrashKeysWin(); |
google_breakpad::CustomClientInfo* custom_info = |
- keeper->GetCustomInfo(exe_path, process_type, |
- GetProfileType(), CommandLine::ForCurrentProcess(), |
+ keeper->GetCustomInfo(exe_path, process_type, GetProfileType(), |
+ base::CommandLine::ForCurrentProcess(), |
GetCrashReporterClient()); |
google_breakpad::ExceptionHandler::MinidumpCallback callback = NULL; |