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

Side by Side Diff: chrome/installer/util/google_update_constants.cc

Issue 23579003: GCAPI should append to the existing experiment_labels instead of clobbering them. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: include string16.h Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/installer/util/google_update_constants.h" 5 #include "chrome/installer/util/google_update_constants.h"
6 6
7 namespace google_update { 7 namespace google_update {
8 8
9 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}"; 9 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}";
10 10
11 const wchar_t kExperimentLabels[] = L"experiment_labels"; 11 const wchar_t kExperimentLabels[] = L"experiment_labels";
12 const char16 kExperimentLabelSep[] = L";";
Alexei Svitkine (slow) 2013/08/30 14:17:19 Unfortunately, you can't use the L prefix for a st
gab 2013/08/30 17:53:11 That doesn't work either as on Windows char16 can'
Alexei Svitkine (slow) 2013/08/30 18:16:11 I guess a cast of the non-L value to char16 would
gab 2013/08/30 22:57:14 Pulled those functions out to a Windows specific f
Alexei Svitkine (slow) 2013/09/03 15:46:35 I prefer the Windows specific file actually be ren
gab 2013/11/05 22:20:38 Done.
12 13
13 const wchar_t kGoogleUpdateUpgradeCode[] = 14 const wchar_t kGoogleUpdateUpgradeCode[] =
14 L"{430FD4D0-B729-4F61-AA34-91526481799D}"; 15 L"{430FD4D0-B729-4F61-AA34-91526481799D}";
15 16
16 const wchar_t kGoogleUpdateSetupExe[] = L"GoogleUpdateSetup.exe"; 17 const wchar_t kGoogleUpdateSetupExe[] = L"GoogleUpdateSetup.exe";
17 18
18 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; 19 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients";
19 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; 20 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState";
20 const wchar_t kRegPathClientStateMedium[] = 21 const wchar_t kRegPathClientStateMedium[] =
21 L"Software\\Google\\Update\\ClientStateMedium"; 22 L"Software\\Google\\Update\\ClientStateMedium";
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 const wchar_t kRegReferralField[] = L"referral"; 58 const wchar_t kRegReferralField[] = L"referral";
58 const wchar_t kRegRenameCmdField[] = L"cmd"; 59 const wchar_t kRegRenameCmdField[] = L"cmd";
59 const wchar_t kRegRunAsUserField[] = L"RunAsUser"; 60 const wchar_t kRegRunAsUserField[] = L"RunAsUser";
60 const wchar_t kRegSendsPingsField[] = L"SendsPings"; 61 const wchar_t kRegSendsPingsField[] = L"SendsPings";
61 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; 62 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine";
62 const wchar_t kRegUsageStatsField[] = L"usagestats"; 63 const wchar_t kRegUsageStatsField[] = L"usagestats";
63 const wchar_t kRegVersionField[] = L"pv"; 64 const wchar_t kRegVersionField[] = L"pv";
64 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; 65 const wchar_t kRegWebAccessibleField[] = L"WebAccessible";
65 66
66 } // namespace google_update 67 } // namespace google_update
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698