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

Unified Diff: chrome/common/child_process_host.cc

Issue 173020: Make Mac first run store sentinel in Profile directory. (Closed)
Patch Set: spelling Created 11 years, 4 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
« chrome/browser/google_update_settings_posix.cc ('K') | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/child_process_host.cc
diff --git a/chrome/common/child_process_host.cc b/chrome/common/child_process_host.cc
index 1fa91f993cb9034e102b70d5a73303e2005faf2b..d21899815845fc16971112a0aac92d803cb30879 100644
--- a/chrome/common/child_process_host.cc
+++ b/chrome/common/child_process_host.cc
@@ -31,7 +31,7 @@
// static string containing the user's unique GUID. We send this in the crash
// report.
namespace google_update {
-extern std::string linux_guid;
+extern std::string posix_guid;
} // namespace google_update
#endif // OS_LINUX
@@ -149,7 +149,7 @@ void ChildProcessHost::SetCrashReporterCommandLine(CommandLine* command_line) {
if (GoogleUpdateSettings::GetCollectStatsConsent()) {
#if defined(OS_LINUX)
command_line->AppendSwitchWithValue(switches::kEnableCrashReporter,
- ASCIIToWide(google_update::linux_guid +
+ ASCIIToWide(google_update::posix_guid +
"," +
base::GetLinuxDistro()));
#else // !OS_LINUX
« chrome/browser/google_update_settings_posix.cc ('K') | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698