Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2215)

Unified Diff: content/shell/app/shell_crash_reporter_client.cc

Issue 803813003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/app/blink_test_platform_support_win.cc ('k') | content/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_crash_reporter_client.cc
diff --git a/content/shell/app/shell_crash_reporter_client.cc b/content/shell/app/shell_crash_reporter_client.cc
index 0ab490c3b793799814410150c5088892bb746334..fab0e9031b55680471e417e45d82bca698ee8959 100644
--- a/content/shell/app/shell_crash_reporter_client.cc
+++ b/content/shell/app/shell_crash_reporter_client.cc
@@ -48,9 +48,10 @@ base::FilePath ShellCrashReporterClient::GetReporterLogFilename() {
#endif
bool ShellCrashReporterClient::GetCrashDumpLocation(base::FilePath* crash_dir) {
- if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kCrashDumpsDir))
+ if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kCrashDumpsDir))
return false;
- *crash_dir = CommandLine::ForCurrentProcess()->GetSwitchValuePath(
+ *crash_dir = base::CommandLine::ForCurrentProcess()->GetSwitchValuePath(
switches::kCrashDumpsDir);
return true;
}
« no previous file with comments | « content/shell/app/blink_test_platform_support_win.cc ('k') | content/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698