| 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/file_path.h" | 7 #include "base/file_path.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 FPL(PRODUCT_STRING " Framework.framework"); | 119 FPL(PRODUCT_STRING " Framework.framework"); |
| 120 | 120 |
| 121 const char* const kHelperFlavorSuffixes[] = { | 121 const char* const kHelperFlavorSuffixes[] = { |
| 122 FPL("EH"), // Executable heap | 122 FPL("EH"), // Executable heap |
| 123 FPL("NP"), // No PIE | 123 FPL("NP"), // No PIE |
| 124 NULL | 124 NULL |
| 125 }; | 125 }; |
| 126 #endif // OS_MACOSX | 126 #endif // OS_MACOSX |
| 127 | 127 |
| 128 const wchar_t kNaClAppName[] = L"nacl64"; | 128 const wchar_t kNaClAppName[] = L"nacl64"; |
| 129 #if defined(GOOGLE_CHROME_BUILD) | |
| 130 const wchar_t kBrowserAppName[] = L"Chrome"; | |
| 131 #else | |
| 132 const wchar_t kBrowserAppName[] = L"Chromium"; | |
| 133 #endif | |
| 134 | 129 |
| 135 #if defined(OS_WIN) | 130 #if defined(OS_WIN) |
| 136 const FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); | 131 const FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); |
| 137 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 132 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
| 138 #endif // defined(OS_WIN) | 133 #endif // defined(OS_WIN) |
| 139 | 134 |
| 140 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 135 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 141 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 136 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 142 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 137 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 143 const char kInitialProfile[] = "Default"; | 138 const char kInitialProfile[] = "Default"; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 238 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
| 244 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 239 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
| 245 const wchar_t kMetroRegistryPath[] = | 240 const wchar_t kMetroRegistryPath[] = |
| 246 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; | 241 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; |
| 247 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 242 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
| 248 #endif | 243 #endif |
| 249 | 244 |
| 250 } // namespace chrome | 245 } // namespace chrome |
| 251 | 246 |
| 252 #undef FPL | 247 #undef FPL |
| OLD | NEW |