| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 #endif // OS_MACOSX | 102 #endif // OS_MACOSX |
| 103 | 103 |
| 104 const wchar_t kNaClAppName[] = L"nacl64"; | 104 const wchar_t kNaClAppName[] = L"nacl64"; |
| 105 #if defined(GOOGLE_CHROME_BUILD) | 105 #if defined(GOOGLE_CHROME_BUILD) |
| 106 const wchar_t kBrowserAppName[] = L"Chrome"; | 106 const wchar_t kBrowserAppName[] = L"Chrome"; |
| 107 #else | 107 #else |
| 108 const wchar_t kBrowserAppName[] = L"Chromium"; | 108 const wchar_t kBrowserAppName[] = L"Chromium"; |
| 109 #endif | 109 #endif |
| 110 | 110 |
| 111 #if defined(OS_WIN) | 111 #if defined(OS_WIN) |
| 112 const FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); |
| 112 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 113 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
| 113 #endif // defined(OS_WIN) | 114 #endif // defined(OS_WIN) |
| 114 | 115 |
| 115 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 116 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 116 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 117 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 117 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 118 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 118 const char kInitialProfile[] = "Default"; | 119 const char kInitialProfile[] = "Default"; |
| 119 const char kMultiProfileDirPrefix[] = "Profile "; | 120 const char kMultiProfileDirPrefix[] = "Profile "; |
| 120 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 121 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 121 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); | 122 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; | 207 const wchar_t kMetroChromeUserDataSubDir[] = L"Metro"; |
| 207 const wchar_t kMetroNavigationAndSearchMessage[] = | 208 const wchar_t kMetroNavigationAndSearchMessage[] = |
| 208 L"CHROME_METRO_NAV_SEARCH_REQUEST"; | 209 L"CHROME_METRO_NAV_SEARCH_REQUEST"; |
| 209 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 210 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
| 210 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 211 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
| 211 #endif | 212 #endif |
| 212 | 213 |
| 213 } // namespace chrome | 214 } // namespace chrome |
| 214 | 215 |
| 215 #undef FPL | 216 #undef FPL |
| OLD | NEW |