| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 #if defined(OS_WIN) | 64 #if defined(OS_WIN) |
| 65 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 65 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
| 66 #endif // defined(OS_WIN) | 66 #endif // defined(OS_WIN) |
| 67 | 67 |
| 68 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 68 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 69 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 69 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 70 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 70 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 71 const wchar_t kNotSignedInProfile[] = L"Default"; | 71 const wchar_t kNotSignedInProfile[] = L"Default"; |
| 72 const wchar_t kNotSignedInID[] = L"not-signed-in"; | 72 const wchar_t kNotSignedInID[] = L"not-signed-in"; |
| 73 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 73 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 74 const FilePath::CharType kExtensionFileExtension[] = FPL("crx"); | 74 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); |
| 75 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); |
| 75 | 76 |
| 76 // filenames | 77 // filenames |
| 77 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 78 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
| 78 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 79 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
| 79 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 80 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 80 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | 81 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
| 81 FPL("Incognito Media Cache"); | 82 FPL("Incognito Media Cache"); |
| 82 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); | 83 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); |
| 83 const FilePath::CharType kChromePluginDataDirname[] = FPL("Plugin Data"); | 84 const FilePath::CharType kChromePluginDataDirname[] = FPL("Plugin Data"); |
| 84 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 85 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 133 |
| 133 const int kMaxSessionHistoryEntries = 50; | 134 const int kMaxSessionHistoryEntries = 50; |
| 134 | 135 |
| 135 const wchar_t kChromiumRendererIdProperty[] = L"ChromiumRendererId"; | 136 const wchar_t kChromiumRendererIdProperty[] = L"ChromiumRendererId"; |
| 136 | 137 |
| 137 const char* const kUnknownLanguageCode = "und"; | 138 const char* const kUnknownLanguageCode = "und"; |
| 138 | 139 |
| 139 } // namespace chrome | 140 } // namespace chrome |
| 140 | 141 |
| 141 #undef FPL | 142 #undef FPL |
| OLD | NEW |