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

Side by Side Diff: chrome/installer/mini_installer/mini_installer_constants.cc

Issue 2559053002: Instrument setup.exe in the SyzyAsan builds.
Patch Set: Fix the component build Created 3 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/mini_installer/mini_installer_constants.h" 5 #include "chrome/installer/mini_installer/mini_installer_constants.h"
6 6
7 namespace mini_installer { 7 namespace mini_installer {
8 8
9 // Various filenames and prefixes. 9 // Various filenames and prefixes.
10 // The target name of the installer extracted from resources. 10 // The target name of the installer extracted from resources.
11 const wchar_t kSetupExe[] = L"setup.exe"; 11 const wchar_t kSetupExe[] = L"setup.exe";
12 // The prefix of the chrome archive resource. 12 // The prefix of the chrome archive resource.
13 const wchar_t kChromeArchivePrefix[] = L"chrome"; 13 const wchar_t kChromeArchivePrefix[] = L"chrome";
14 // The prefix of the installer resource. 14 // The prefix of the installer resource.
15 const wchar_t kSetupPrefix[] = L"setup"; 15 const wchar_t kSetupPrefix[] = L"setup";
16 #if defined(SYZYASAN)
17 const wchar_t kSyzyAsanRuntimePrefix[] = L"syzyasan_rtl";
grt (UTC plus 2) 2017/04/20 09:30:50 if this is only used in mini_installer.cc, move it
18 #endif
16 19
17 // Command line switch names for setup.exe. 20 // Command line switch names for setup.exe.
18 #if defined(COMPONENT_BUILD) 21 #if defined(COMPONENT_BUILD)
19 const wchar_t kCmdUncompressedArchive[] = L"uncompressed-archive"; 22 const wchar_t kCmdUncompressedArchive[] = L"uncompressed-archive";
20 #else 23 #else
21 const wchar_t kCmdInstallArchive[] = L"install-archive"; 24 const wchar_t kCmdInstallArchive[] = L"install-archive";
22 #endif 25 #endif
23 const wchar_t kCmdUpdateSetupExe[] = L"update-setup-exe"; 26 const wchar_t kCmdUpdateSetupExe[] = L"update-setup-exe";
24 const wchar_t kCmdNewSetupExe[] = L"new-setup-exe"; 27 const wchar_t kCmdNewSetupExe[] = L"new-setup-exe";
25 const wchar_t kCmdPreviousVersion[] = L"previous-version"; 28 const wchar_t kCmdPreviousVersion[] = L"previous-version";
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // No trailing slash on this one because the app's GUID is not appended. 76 // No trailing slash on this one because the app's GUID is not appended.
74 const wchar_t kClientsKeyBase[] = L"Software\\Chromium"; 77 const wchar_t kClientsKeyBase[] = L"Software\\Chromium";
75 // The path to the key containing each app's Client State registry key. 78 // The path to the key containing each app's Client State registry key.
76 // No trailing slash on this one because the app's GUID is not appended. 79 // No trailing slash on this one because the app's GUID is not appended.
77 const wchar_t kClientStateKeyBase[] = L"Software\\Chromium"; 80 const wchar_t kClientStateKeyBase[] = L"Software\\Chromium";
78 // The path to the key in which kCleanupRegistryValue is found. 81 // The path to the key in which kCleanupRegistryValue is found.
79 const wchar_t kCleanupRegistryKey[] = L"Software\\Chromium"; 82 const wchar_t kCleanupRegistryKey[] = L"Software\\Chromium";
80 #endif 83 #endif
81 84
82 } // namespace mini_installer 85 } // namespace mini_installer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698