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

Side by Side Diff: chrome/installer/gcapi/gcapi.cc

Issue 1220133003: Fixed all unused-variable Clang warnings on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iaccessible2-fix-gn
Patch Set: Rebase. Created 5 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 unified diff | Download patch
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 // NOTE: This code is a legacy utility API for partners to check whether 5 // NOTE: This code is a legacy utility API for partners to check whether
6 // Chrome can be installed and launched. Recent updates are being made 6 // Chrome can be installed and launched. Recent updates are being made
7 // to add new functionality. These updates use code from Chromium, the old 7 // to add new functionality. These updates use code from Chromium, the old
8 // coded against the win32 api directly. If you have an itch to shave a 8 // coded against the win32 api directly. If you have an itch to shave a
9 // yak, feel free to re-write the old code too. 9 // yak, feel free to re-write the old code too.
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 using base::win::ScopedHandle; 51 using base::win::ScopedHandle;
52 52
53 namespace { 53 namespace {
54 54
55 const wchar_t kChromeRegClientsKey[] = 55 const wchar_t kChromeRegClientsKey[] =
56 L"Software\\Google\\Update\\Clients\\" 56 L"Software\\Google\\Update\\Clients\\"
57 L"{8A69D345-D564-463c-AFF1-A69D9E530F96}"; 57 L"{8A69D345-D564-463c-AFF1-A69D9E530F96}";
58 const wchar_t kChromeRegClientStateKey[] = 58 const wchar_t kChromeRegClientStateKey[] =
59 L"Software\\Google\\Update\\ClientState\\" 59 L"Software\\Google\\Update\\ClientState\\"
60 L"{8A69D345-D564-463c-AFF1-A69D9E530F96}"; 60 L"{8A69D345-D564-463c-AFF1-A69D9E530F96}";
61 const wchar_t kChromeRegClientStateMediumKey[] =
62 L"Software\\Google\\Update\\ClientStateMedium\\"
63 L"{8A69D345-D564-463c-AFF1-A69D9E530F96}";
64 61
65 const wchar_t kGCAPITempKey[] = L"Software\\Google\\GCAPITemp"; 62 const wchar_t kGCAPITempKey[] = L"Software\\Google\\GCAPITemp";
66 63
67 const wchar_t kChromeRegLaunchCmd[] = L"InstallerSuccessLaunchCmdLine";
68 const wchar_t kChromeRegLastLaunchCmd[] = L"LastInstallerSuccessLaunchCmdLine";
69 const wchar_t kChromeRegVersion[] = L"pv"; 64 const wchar_t kChromeRegVersion[] = L"pv";
70 const wchar_t kNoChromeOfferUntil[] = 65 const wchar_t kNoChromeOfferUntil[] =
71 L"SOFTWARE\\Google\\No Chrome Offer Until"; 66 L"SOFTWARE\\Google\\No Chrome Offer Until";
72 67
73 const wchar_t kC1FPendingKey[] = 68 const wchar_t kC1FPendingKey[] =
74 L"Software\\Google\\Common\\Rlz\\Events\\C"; 69 L"Software\\Google\\Common\\Rlz\\Events\\C";
75 const wchar_t kC1FSentKey[] = 70 const wchar_t kC1FSentKey[] =
76 L"Software\\Google\\Common\\Rlz\\StatefulEvents\\C"; 71 L"Software\\Google\\Common\\Rlz\\StatefulEvents\\C";
77 const wchar_t kC1FKey[] = L"C1F"; 72 const wchar_t kC1FKey[] = L"C1F";
78 73
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 key.WriteValue(kRelaunchAllowedAfterValue, 784 key.WriteValue(kRelaunchAllowedAfterValue,
790 FormatDateOffsetByMonths(6)) != ERROR_SUCCESS || 785 FormatDateOffsetByMonths(6)) != ERROR_SUCCESS ||
791 !SetRelaunchExperimentLabels(relaunch_brandcode, shell_mode)) { 786 !SetRelaunchExperimentLabels(relaunch_brandcode, shell_mode)) {
792 if (error_code) 787 if (error_code)
793 *error_code = RELAUNCH_ERROR_RELAUNCH_FAILED; 788 *error_code = RELAUNCH_ERROR_RELAUNCH_FAILED;
794 return FALSE; 789 return FALSE;
795 } 790 }
796 791
797 return TRUE; 792 return TRUE;
798 } 793 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698