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

Unified Diff: chrome/app/breakpad_mac.mm

Issue 3032037: [mac] fix official build (Closed)
Patch Set: Use GetSwitchValueASCII() Created 10 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/breakpad_mac.mm
diff --git a/chrome/app/breakpad_mac.mm b/chrome/app/breakpad_mac.mm
index fdc918d26648c5730e41a57fa240b23c288cd0df..1d701de20ee49e577e6400c45d08a63b99120fc6 100644
--- a/chrome/app/breakpad_mac.mm
+++ b/chrome/app/breakpad_mac.mm
@@ -134,8 +134,8 @@ void InitCrashReporter() {
if (!is_browser) {
// Get the guid from the command line switch.
- std::string guid = WideToASCII(
- command_line->GetSwitchValue(switches::kEnableCrashReporter));
+ std::string guid =
+ command_line->GetSwitchValueASCII(switches::kEnableCrashReporter);
child_process_logging::SetClientId(guid);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698