OLD | NEW |
---|---|
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/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 | 8 |
9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
10 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
111 const base::FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome"); | 111 const base::FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome"); |
112 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] = | 112 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] = |
113 FPL("chrome"); | 113 FPL("chrome"); |
114 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome"); | 114 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome"); |
115 #endif // OS_* | 115 #endif // OS_* |
116 | 116 |
117 #if defined(OS_MACOSX) | 117 #if defined(OS_MACOSX) |
118 const base::FilePath::CharType kFrameworkName[] = | 118 const base::FilePath::CharType kFrameworkName[] = |
119 FPL(PRODUCT_STRING " Framework.framework"); | 119 FPL(PRODUCT_STRING " Framework.framework"); |
120 | 120 |
121 const char* const kHelperFlavorSuffixes[] = { | 121 const char* const kHelperFlavorSuffixes[] = { |
Nico
2015/09/01 23:27:16
Can this be removed altogether? Or will this grow
Greg K
2015/09/01 23:50:15
Yes, soon NLV suffix will be added and I would pre
Nico
2015/09/01 23:52:55
Makes sense.
| |
122 FPL("EH"), // Executable heap | |
123 FPL("NP"), // No PIE | |
124 NULL | 122 NULL |
125 }; | 123 }; |
126 #endif // OS_MACOSX | 124 #endif // OS_MACOSX |
127 | 125 |
128 #if defined(OS_WIN) | 126 #if defined(OS_WIN) |
129 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); | 127 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); |
130 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); | 128 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); |
131 const base::FilePath::CharType kStatusTrayWindowClass[] = | 129 const base::FilePath::CharType kStatusTrayWindowClass[] = |
132 FPL("Chrome_StatusTrayWindow"); | 130 FPL("Chrome_StatusTrayWindow"); |
133 #endif // defined(OS_WIN) | 131 #endif // defined(OS_WIN) |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
236 // user can select for different file types. | 234 // user can select for different file types. |
237 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 235 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
238 const char kApplicationClientIDStringForAVScanning[] = | 236 const char kApplicationClientIDStringForAVScanning[] = |
239 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 237 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
240 | 238 |
241 const size_t kMaxMetaTagAttributeLength = 2000; | 239 const size_t kMaxMetaTagAttributeLength = 2000; |
242 | 240 |
243 } // namespace chrome | 241 } // namespace chrome |
244 | 242 |
245 #undef FPL | 243 #undef FPL |
OLD | NEW |