| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 const base::FilePath::CharType kFrameworkName[] = | 126 const base::FilePath::CharType kFrameworkName[] = |
| 127 FPL(PRODUCT_STRING " Framework.framework"); | 127 FPL(PRODUCT_STRING " Framework.framework"); |
| 128 | 128 |
| 129 const char* const kHelperFlavorSuffixes[] = { | 129 const char* const kHelperFlavorSuffixes[] = { |
| 130 FPL("EH"), // Executable heap | 130 FPL("EH"), // Executable heap |
| 131 FPL("NP"), // No PIE | 131 FPL("NP"), // No PIE |
| 132 NULL | 132 NULL |
| 133 }; | 133 }; |
| 134 #endif // OS_MACOSX | 134 #endif // OS_MACOSX |
| 135 | 135 |
| 136 const wchar_t kNaClAppName[] = L"nacl64"; | |
| 137 | |
| 138 #if defined(OS_WIN) | 136 #if defined(OS_WIN) |
| 139 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); | 137 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); |
| 140 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 138 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
| 141 #endif // defined(OS_WIN) | 139 #endif // defined(OS_WIN) |
| 142 | 140 |
| 143 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 141 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 144 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 142 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 145 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 143 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 146 const char kInitialProfile[] = "Default"; | 144 const char kInitialProfile[] = "Default"; |
| 147 const char kMultiProfileDirPrefix[] = "Profile "; | 145 const char kMultiProfileDirPrefix[] = "Profile "; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 251 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
| 254 #endif | 252 #endif |
| 255 | 253 |
| 256 #if defined(OS_CHROMEOS) | 254 #if defined(OS_CHROMEOS) |
| 257 const char kProfileDirPrefix[] = "u-"; | 255 const char kProfileDirPrefix[] = "u-"; |
| 258 #endif | 256 #endif |
| 259 | 257 |
| 260 } // namespace chrome | 258 } // namespace chrome |
| 261 | 259 |
| 262 #undef FPL | 260 #undef FPL |
| OLD | NEW |