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

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

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 #ifndef CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ 5 #ifndef CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
6 #define CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ 6 #define CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
7 7
8 namespace mini_installer { 8 namespace mini_installer {
9 9
10 // Various filenames and prefixes. 10 // Various filenames and prefixes.
11 extern const wchar_t kSetupExe[]; 11 extern const wchar_t kSetupExe[];
12 extern const wchar_t kChromeArchivePrefix[]; 12 extern const wchar_t kChromeArchivePrefix[];
13 extern const wchar_t kSetupPrefix[]; 13 extern const wchar_t kSetupPrefix[];
14 #if defined(SYZYASAN)
15 extern const wchar_t kSyzyAsanRuntimePrefix[];
16 #endif
14 17
15 // Unprefixed command line switch names for setup.exe. 18 // Unprefixed command line switch names for setup.exe.
16 #if defined(COMPONENT_BUILD) 19 #if defined(COMPONENT_BUILD)
17 extern const wchar_t kCmdUncompressedArchive[]; 20 extern const wchar_t kCmdUncompressedArchive[];
18 #else 21 #else
19 extern const wchar_t kCmdInstallArchive[]; 22 extern const wchar_t kCmdInstallArchive[];
20 #endif 23 #endif
21 extern const wchar_t kCmdUpdateSetupExe[]; 24 extern const wchar_t kCmdUpdateSetupExe[];
22 extern const wchar_t kCmdNewSetupExe[]; 25 extern const wchar_t kCmdNewSetupExe[];
23 extern const wchar_t kCmdPreviousVersion[]; 26 extern const wchar_t kCmdPreviousVersion[];
(...skipping 18 matching lines...) Expand all
42 extern const wchar_t kUninstallRegistryValue[]; 45 extern const wchar_t kUninstallRegistryValue[];
43 46
44 // Registry key paths. 47 // Registry key paths.
45 extern const wchar_t kClientsKeyBase[]; 48 extern const wchar_t kClientsKeyBase[];
46 extern const wchar_t kClientStateKeyBase[]; 49 extern const wchar_t kClientStateKeyBase[];
47 extern const wchar_t kCleanupRegistryKey[]; 50 extern const wchar_t kCleanupRegistryKey[];
48 51
49 } // namespace mini_installer 52 } // namespace mini_installer
50 53
51 #endif // CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_ 54 #endif // CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698