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

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

Issue 11255: * Invoke Google Update to do the exe rename. (Closed)
Patch Set: code review feedback Created 12 years, 1 month 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 kChromeGuid[] = L"{8A69D345-D564-463c-AFF1-A69D9E530F96}"; 9 const wchar_t kChromeGuid[] = L"{8A69D345-D564-463c-AFF1-A69D9E530F96}";
10 const wchar_t kGearsUpgradeCode[] = L"{D92DBAED-3E3E-4530-B30D-072D16C7DDD0}"; 10 const wchar_t kGearsUpgradeCode[] = L"{D92DBAED-3E3E-4530-B30D-072D16C7DDD0}";
11 11
12 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; 12 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients";
13 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; 13 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState";
14 14
15 const wchar_t kRegApField[] = L"ap"; 15 const wchar_t kRegApField[] = L"ap";
16 const wchar_t kRegBrowserField[] = L"browser"; 16 const wchar_t kRegBrowserField[] = L"browser";
17 const wchar_t kRegDidRunField[] = L"dr"; 17 const wchar_t kRegDidRunField[] = L"dr";
18 const wchar_t kRegLangField[] = L"lang"; 18 const wchar_t kRegLangField[] = L"lang";
19 const wchar_t kRegLastCheckedField[] = L"LastChecked"; 19 const wchar_t kRegLastCheckedField[] = L"LastChecked";
20 const wchar_t kRegNameField[] = L"name"; 20 const wchar_t kRegNameField[] = L"name";
21 const wchar_t kRegOldVersionField[] = L"opv"; 21 const wchar_t kRegOldVersionField[] = L"opv";
22 const wchar_t kRegRenameCmdField[] = L"rename"; 22 const wchar_t kRegRenameCmdField[] = L"cmd";
23 const wchar_t kRegRLZBrandField[] = L"brand"; 23 const wchar_t kRegRLZBrandField[] = L"brand";
24 const wchar_t kRegUsageStatsField[] = L"usagestats"; 24 const wchar_t kRegUsageStatsField[] = L"usagestats";
25 const wchar_t kRegVersionField[] = L"pv"; 25 const wchar_t kRegVersionField[] = L"pv";
26 26
27 const wchar_t kEnvProductVersionKey[] = L"CHROME_VERSION"; 27 const wchar_t kEnvProductVersionKey[] = L"CHROME_VERSION";
28 } // namespace installer 28 } // namespace installer
29 29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698