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

Side by Side Diff: chrome_elf/chrome_elf_constants.cc

Issue 2422643002: Windows install_static refactor. (Closed)
Patch Set: plug test leak Created 4 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 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_elf/chrome_elf_constants.h" 5 #include "chrome_elf/chrome_elf_constants.h"
6 6
7 #if defined(GOOGLE_CHROME_BUILD) 7 #if defined(GOOGLE_CHROME_BUILD)
8 // Using PRODUCT_STRING_PATH will make Google Chrome and Canary configurations 8 // Using PRODUCT_STRING_PATH will make Google Chrome and Canary configurations
9 // collide. This was deemed to be the best option due to ELF's inability to 9 // collide. This was deemed to be the best option due to ELF's inability to
10 // depend on BrowserDistribution. http://crbug.com/577820 10 // depend on BrowserDistribution. http://crbug.com/577820
(...skipping 17 matching lines...) Expand all
28 } // namespace blacklist 28 } // namespace blacklist
29 29
30 namespace elf_sec { 30 namespace elf_sec {
31 31
32 const wchar_t kRegSecurityFinchPath[] = 32 const wchar_t kRegSecurityFinchPath[] =
33 L"SOFTWARE\\" PRODUCT_STRING_PATH L"\\BrowserSboxFinch"; 33 L"SOFTWARE\\" PRODUCT_STRING_PATH L"\\BrowserSboxFinch";
34 const wchar_t kRegSecurityPath[] = 34 const wchar_t kRegSecurityPath[] =
35 L"SOFTWARE\\" PRODUCT_STRING_PATH L"\\BrowserSec"; 35 L"SOFTWARE\\" PRODUCT_STRING_PATH L"\\BrowserSec";
36 36
37 } // namespace elf_sec 37 } // namespace elf_sec
38
39 const char kChromeElfInstallDetailsPayloadFunctionName[] =
40 "GetInstallDetailsPayload";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698