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

Side by Side Diff: chrome/installer/setup/setup_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 (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 #include "chrome/installer/setup/setup_constants.h" 5 #include "chrome/installer/setup/setup_constants.h"
6 6
7 namespace installer { 7 namespace installer {
8 8
9 // Elements that make up install paths. 9 // Elements that make up install paths.
10 const wchar_t kChromeArchive[] = L"chrome.7z"; 10 const wchar_t kChromeArchive[] = L"chrome.7z";
(...skipping 14 matching lines...) Expand all
25 // seconds. This is used when changing the DisplayVersion registry value 25 // seconds. This is used when changing the DisplayVersion registry value
26 // only after some time has passed, called by the MSI installer. 26 // only after some time has passed, called by the MSI installer.
27 const char kDelay[] = "delay"; 27 const char kDelay[] = "delay";
28 28
29 // Set the MSI-managed DisplayVersion in the registry to match Chrome's real 29 // Set the MSI-managed DisplayVersion in the registry to match Chrome's real
30 // version number. The parameter to this option specifies the product-id in 30 // version number. The parameter to this option specifies the product-id in
31 // the registry under HKLM. 31 // the registry under HKLM.
32 const char kSetDisplayVersionProduct[] = "set-display-version-product"; 32 const char kSetDisplayVersionProduct[] = "set-display-version-product";
33 const char kSetDisplayVersionValue[] = "set-display-version-value"; 33 const char kSetDisplayVersionValue[] = "set-display-version-value";
34 34
35 #if defined(SYZYASAN)
36 // Switches to test the Asan integration.
37 const char kInduceAsanCrash[] = "induce-asan-crash";
38 const char kAsanUseAfterFree[] = "use-after-free";
39 const char kAsanHeapOverflow[] = "heap-overflow";
40 const char kAsanHeapUnderflow[] = "heap-underflow";
41 #endif
42
35 } // namespace switches 43 } // namespace switches
36 44
37 } // namespace installer 45 } // namespace installer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698