| 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 L"Chromium.app/Contents/MacOS/Chromium"; | 36 L"Chromium.app/Contents/MacOS/Chromium"; |
| 37 #endif // GOOGLE_CHROME_BUILD | 37 #endif // GOOGLE_CHROME_BUILD |
| 38 #endif // OS_* | 38 #endif // OS_* |
| 39 #if defined(GOOGLE_CHROME_BUILD) | 39 #if defined(GOOGLE_CHROME_BUILD) |
| 40 const wchar_t kBrowserAppName[] = L"Chrome"; | 40 const wchar_t kBrowserAppName[] = L"Chrome"; |
| 41 const char kStatsFilename[] = "ChromeStats2"; | 41 const char kStatsFilename[] = "ChromeStats2"; |
| 42 #else | 42 #else |
| 43 const wchar_t kBrowserAppName[] = L"Chromium"; | 43 const wchar_t kBrowserAppName[] = L"Chromium"; |
| 44 const char kStatsFilename[] = "ChromiumStats2"; | 44 const char kStatsFilename[] = "ChromiumStats2"; |
| 45 #endif | 45 #endif |
| 46 const wchar_t kExternalTabWindowClass[] = L"Chrome_ExternalTabContainer"; | |
| 47 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 46 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 48 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 47 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 49 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 48 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 50 const wchar_t kNotSignedInProfile[] = L"Default"; | 49 const wchar_t kNotSignedInProfile[] = L"Default"; |
| 51 const wchar_t kNotSignedInID[] = L"not-signed-in"; | 50 const wchar_t kNotSignedInID[] = L"not-signed-in"; |
| 52 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 51 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 53 const FilePath::CharType kExtensionFileExtension[] = FPL("crx"); | 52 const FilePath::CharType kExtensionFileExtension[] = FPL("crx"); |
| 54 | 53 |
| 55 // filenames | 54 // filenames |
| 56 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 55 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 87 // potentially be tricked into running a product in record mode without | 86 // potentially be tricked into running a product in record mode without |
| 88 // knowing it. Enable in debug builds. Playback mode is allowed always, | 87 // knowing it. Enable in debug builds. Playback mode is allowed always, |
| 89 // because it is useful for testing and not hazardous by itself. | 88 // because it is useful for testing and not hazardous by itself. |
| 90 #ifndef NDEBUG | 89 #ifndef NDEBUG |
| 91 const bool kRecordModeEnabled = true; | 90 const bool kRecordModeEnabled = true; |
| 92 #else | 91 #else |
| 93 const bool kRecordModeEnabled = false; | 92 const bool kRecordModeEnabled = false; |
| 94 #endif | 93 #endif |
| 95 | 94 |
| 96 } // namespace chrome | 95 } // namespace chrome |
| OLD | NEW |