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

Unified Diff: chrome/installer/util/google_update_constants.cc

Issue 6588003: Add support for the quick-enable-cf command to the installer. This encompase... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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
Index: chrome/installer/util/google_update_constants.cc
===================================================================
--- chrome/installer/util/google_update_constants.cc (revision 76372)
+++ chrome/installer/util/google_update_constants.cc (working copy)
@@ -16,25 +16,28 @@
const wchar_t kRegApField[] = L"ap";
const wchar_t kRegBrowserField[] = L"browser";
+const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd";
+const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd";
+const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd";
+const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd";
const wchar_t kRegClientField[] = L"client";
+const wchar_t kRegCommandLineField[] = L"CommandLine";
const wchar_t kRegDidRunField[] = L"dr";
+const wchar_t kRegEULAAceptedField[] = L"eulaaccepted";
const wchar_t kRegLangField[] = L"lang";
const wchar_t kRegLastCheckedField[] = L"LastChecked";
+const wchar_t kRegLastRunTimeField[] = L"lastrun";
+const wchar_t kRegMSIField[] = L"msi";
robertshield 2011/03/02 14:58:57 kRegMSI... should come after kRegMetrics...
grt (UTC plus 2) 2011/03/02 19:48:28 Done.
const wchar_t kRegMetricsId[] = L"metricsid";
-const wchar_t kRegMSIField[] = L"msi";
const wchar_t kRegNameField[] = L"name";
+const wchar_t kRegOldVersionField[] = L"opv";
const wchar_t kRegOopcrashesField[] = L"oopcrashes";
-const wchar_t kRegOldVersionField[] = L"opv";
+const wchar_t kRegRLZBrandField[] = L"brand";
+const wchar_t kRegReferralField[] = L"referral";
const wchar_t kRegRenameCmdField[] = L"cmd";
-const wchar_t kRegRLZBrandField[] = L"brand";
+const wchar_t kRegSendsPingsField[] = L"SendsPings";
const wchar_t kRegUsageStatsField[] = L"usagestats";
const wchar_t kRegVersionField[] = L"pv";
-const wchar_t kRegReferralField[] = L"referral";
-const wchar_t kRegEULAAceptedField[] = L"eulaaccepted";
-const wchar_t kRegLastRunTimeField[] = L"lastrun";
-const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd";
-const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd";
-const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd";
-const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd";
+const wchar_t kRegWebAccessibleField[] = L"WebAccessible";
} // namespace google_update

Powered by Google App Engine
This is Rietveld 408576698