| 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 namespace chrome { | 7 namespace chrome { |
| 8 // The following should not be used for UI strings; they are meant | 8 // The following should not be used for UI strings; they are meant |
| 9 // for system strings only. UI changes should be made in the GRD. | 9 // for system strings only. UI changes should be made in the GRD. |
| 10 const wchar_t kBrowserProcessExecutableName[] = L"chrome.exe"; | 10 const wchar_t kBrowserProcessExecutableName[] = L"chrome.exe"; |
| 11 #if defined(GOOGLE_CHROME_BUILD) | 11 #if defined(GOOGLE_CHROME_BUILD) |
| 12 const wchar_t kBrowserAppName[] = L"Chrome"; | 12 const wchar_t kBrowserAppName[] = L"Chrome"; |
| 13 const char kStatsFilename[] = "ChromeStats"; | 13 const char kStatsFilename[] = "ChromeStats2"; |
| 14 #else | 14 #else |
| 15 const wchar_t kBrowserAppName[] = L"Chromium"; | 15 const wchar_t kBrowserAppName[] = L"Chromium"; |
| 16 const char kStatsFilename[] = "ChromiumStats"; | 16 const char kStatsFilename[] = "ChromiumStats2"; |
| 17 #endif | 17 #endif |
| 18 const wchar_t kExternalTabWindowClass[] = L"Chrome_ExternalTabContainer"; | 18 const wchar_t kExternalTabWindowClass[] = L"Chrome_ExternalTabContainer"; |
| 19 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 19 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 20 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 20 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 21 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 21 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 22 const wchar_t kNotSignedInProfile[] = L"Default"; | 22 const wchar_t kNotSignedInProfile[] = L"Default"; |
| 23 const wchar_t kNotSignedInID[] = L"not-signed-in"; | 23 const wchar_t kNotSignedInID[] = L"not-signed-in"; |
| 24 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 24 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 25 | 25 |
| 26 // filenames | 26 // filenames |
| (...skipping 21 matching lines...) Expand all Loading... |
| 48 // potentially be tricked into running a product in record mode without | 48 // potentially be tricked into running a product in record mode without |
| 49 // knowing it. Enable in debug builds. Playback mode is allowed always, | 49 // knowing it. Enable in debug builds. Playback mode is allowed always, |
| 50 // because it is useful for testing and not hazardous by itself. | 50 // because it is useful for testing and not hazardous by itself. |
| 51 #ifndef NDEBUG | 51 #ifndef NDEBUG |
| 52 const bool kRecordModeEnabled = true; | 52 const bool kRecordModeEnabled = true; |
| 53 #else | 53 #else |
| 54 const bool kRecordModeEnabled = false; | 54 const bool kRecordModeEnabled = false; |
| 55 #endif | 55 #endif |
| 56 } | 56 } |
| 57 | 57 |
| OLD | NEW |