| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 FPL("chrome"); | 110 FPL("chrome"); |
| 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 | |
| 121 const char* const kHelperFlavorSuffixes[] = { | |
| 122 NULL | |
| 123 }; | |
| 124 #endif // OS_MACOSX | 120 #endif // OS_MACOSX |
| 125 | 121 |
| 126 #if defined(OS_WIN) | 122 #if defined(OS_WIN) |
| 127 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); | 123 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); |
| 128 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); | 124 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); |
| 129 const base::FilePath::CharType kStatusTrayWindowClass[] = | 125 const base::FilePath::CharType kStatusTrayWindowClass[] = |
| 130 FPL("Chrome_StatusTrayWindow"); | 126 FPL("Chrome_StatusTrayWindow"); |
| 131 #endif // defined(OS_WIN) | 127 #endif // defined(OS_WIN) |
| 132 | 128 |
| 133 const char kInitialProfile[] = "Default"; | 129 const char kInitialProfile[] = "Default"; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 // user can select for different file types. | 230 // user can select for different file types. |
| 235 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 231 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 236 const char kApplicationClientIDStringForAVScanning[] = | 232 const char kApplicationClientIDStringForAVScanning[] = |
| 237 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 233 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 238 | 234 |
| 239 const size_t kMaxMetaTagAttributeLength = 2000; | 235 const size_t kMaxMetaTagAttributeLength = 2000; |
| 240 | 236 |
| 241 } // namespace chrome | 237 } // namespace chrome |
| 242 | 238 |
| 243 #undef FPL | 239 #undef FPL |
| OLD | NEW |