OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 const char kStatsFilename[] = "ChromiumStats2"; | 104 const char kStatsFilename[] = "ChromiumStats2"; |
105 #endif | 105 #endif |
106 | 106 |
107 #if defined(OS_WIN) | 107 #if defined(OS_WIN) |
108 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 108 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
109 #endif // defined(OS_WIN) | 109 #endif // defined(OS_WIN) |
110 | 110 |
111 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 111 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
112 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 112 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
113 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 113 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
114 const char kNotSignedInProfile[] = "Default"; | 114 const char kInitialProfile[] = "Default"; |
115 const char kMultiProfileDirPrefix[] = "profile_"; | 115 const char kMultiProfileDirPrefix[] = "profile_"; |
116 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 116 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
117 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); | 117 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); |
118 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); | 118 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); |
119 | 119 |
120 // filenames | 120 // filenames |
121 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 121 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
122 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 122 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
123 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 123 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
124 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | 124 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 | 173 |
174 #ifdef TOUCH_UI | 174 #ifdef TOUCH_UI |
175 const bool kEnableTouchIcon = true; | 175 const bool kEnableTouchIcon = true; |
176 #else | 176 #else |
177 const bool kEnableTouchIcon = false; | 177 const bool kEnableTouchIcon = false; |
178 #endif | 178 #endif |
179 | 179 |
180 } // namespace chrome | 180 } // namespace chrome |
181 | 181 |
182 #undef FPL | 182 #undef FPL |
OLD | NEW |