| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 25 matching lines...) Expand all Loading... |
| 36 #elif defined(OS_LINUX) | 36 #elif defined(OS_LINUX) |
| 37 const wchar_t kBrowserProcessExecutablePath[] = L"chrome"; | 37 const wchar_t kBrowserProcessExecutablePath[] = L"chrome"; |
| 38 const wchar_t kHelperProcessExecutablePath[] = L"chrome"; | 38 const wchar_t kHelperProcessExecutablePath[] = L"chrome"; |
| 39 #elif defined(OS_MACOSX) | 39 #elif defined(OS_MACOSX) |
| 40 const wchar_t kBrowserProcessExecutablePath[] = | 40 const wchar_t kBrowserProcessExecutablePath[] = |
| 41 PRODUCT_STRING L".app/Contents/MacOS/" PRODUCT_STRING; | 41 PRODUCT_STRING L".app/Contents/MacOS/" PRODUCT_STRING; |
| 42 const wchar_t kHelperProcessExecutablePath[] = | 42 const wchar_t kHelperProcessExecutablePath[] = |
| 43 PRODUCT_STRING L".app/Contents/Resources/" | 43 PRODUCT_STRING L".app/Contents/Resources/" |
| 44 PRODUCT_STRING L" Helper.app/Contents/MacOS/" PRODUCT_STRING L" Helper"; | 44 PRODUCT_STRING L" Helper.app/Contents/MacOS/" PRODUCT_STRING L" Helper"; |
| 45 #endif // OS_* | 45 #endif // OS_* |
| 46 #if defined(CHROME_EXP_BUILD) | 46 #if defined(CHROME_FRAME_BUILD) |
| 47 const wchar_t kBrowserAppName[] = L"ChromeExp"; | 47 const wchar_t kBrowserAppName[] = L"ChromeFrame"; |
| 48 const char kStatsFilename[] = "ChromeExpStats2"; | 48 const char kStatsFilename[] = "ChromeFrameStats2"; |
| 49 #elif defined(GOOGLE_CHROME_BUILD) | 49 #elif defined(GOOGLE_CHROME_BUILD) |
| 50 const wchar_t kBrowserAppName[] = L"Chrome"; | 50 const wchar_t kBrowserAppName[] = L"Chrome"; |
| 51 const char kStatsFilename[] = "ChromeStats2"; | 51 const char kStatsFilename[] = "ChromeStats2"; |
| 52 #else | 52 #else |
| 53 const wchar_t kBrowserAppName[] = L"Chromium"; | 53 const wchar_t kBrowserAppName[] = L"Chromium"; |
| 54 const char kStatsFilename[] = "ChromiumStats2"; | 54 const char kStatsFilename[] = "ChromiumStats2"; |
| 55 #endif | 55 #endif |
| 56 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 56 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 57 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 57 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 58 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 58 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // because it is useful for testing and not hazardous by itself. | 106 // because it is useful for testing and not hazardous by itself. |
| 107 #ifndef NDEBUG | 107 #ifndef NDEBUG |
| 108 const bool kRecordModeEnabled = true; | 108 const bool kRecordModeEnabled = true; |
| 109 #else | 109 #else |
| 110 const bool kRecordModeEnabled = false; | 110 const bool kRecordModeEnabled = false; |
| 111 #endif | 111 #endif |
| 112 | 112 |
| 113 } // namespace chrome | 113 } // namespace chrome |
| 114 | 114 |
| 115 #undef FPL | 115 #undef FPL |
| OLD | NEW |