| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "chrome/common/chrome_constants.h" | 6 #include "chrome/common/chrome_constants.h" |
| 7 #include "chrome/common/chrome_version.h" | 7 #include "chrome/common/chrome_version.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome"); | 116 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome"); |
| 117 #endif // OS_* | 117 #endif // OS_* |
| 118 | 118 |
| 119 #if defined(OS_MACOSX) | 119 #if defined(OS_MACOSX) |
| 120 const base::FilePath::CharType kFrameworkName[] = | 120 const base::FilePath::CharType kFrameworkName[] = |
| 121 FPL(PRODUCT_STRING " Framework.framework"); | 121 FPL(PRODUCT_STRING " Framework.framework"); |
| 122 #endif // OS_MACOSX | 122 #endif // OS_MACOSX |
| 123 | 123 |
| 124 #if defined(OS_WIN) | 124 #if defined(OS_WIN) |
| 125 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); | 125 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); |
| 126 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); | |
| 127 const base::FilePath::CharType kStatusTrayWindowClass[] = | 126 const base::FilePath::CharType kStatusTrayWindowClass[] = |
| 128 FPL("Chrome_StatusTrayWindow"); | 127 FPL("Chrome_StatusTrayWindow"); |
| 129 #endif // defined(OS_WIN) | 128 #endif // defined(OS_WIN) |
| 130 | 129 |
| 131 const char kInitialProfile[] = "Default"; | 130 const char kInitialProfile[] = "Default"; |
| 132 const char kMultiProfileDirPrefix[] = "Profile "; | 131 const char kMultiProfileDirPrefix[] = "Profile "; |
| 133 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); | 132 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); |
| 134 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); | 133 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); |
| 135 | 134 |
| 136 // filenames | 135 // filenames |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 // user can select for different file types. | 230 // user can select for different file types. |
| 232 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 231 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 233 const char kApplicationClientIDStringForAVScanning[] = | 232 const char kApplicationClientIDStringForAVScanning[] = |
| 234 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 233 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 235 | 234 |
| 236 const size_t kMaxMetaTagAttributeLength = 2000; | 235 const size_t kMaxMetaTagAttributeLength = 2000; |
| 237 | 236 |
| 238 } // namespace chrome | 237 } // namespace chrome |
| 239 | 238 |
| 240 #undef FPL | 239 #undef FPL |
| OLD | NEW |