| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; | 140 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; |
| 141 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 141 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 142 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 142 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 143 const char kInitialProfile[] = "Default"; | 143 const char kInitialProfile[] = "Default"; |
| 144 const char kMultiProfileDirPrefix[] = "Profile "; | 144 const char kMultiProfileDirPrefix[] = "Profile "; |
| 145 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 145 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 146 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); | 146 const FilePath::CharType kExtensionFileExtension[] = FPL(".crx"); |
| 147 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); | 147 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); |
| 148 | 148 |
| 149 // filenames | 149 // filenames |
| 150 const FilePath::CharType kActivityLogFilename[] = FPL("Extension Activity"); |
| 150 #if defined(OS_ANDROID) | 151 #if defined(OS_ANDROID) |
| 151 const FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); | 152 const FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); |
| 152 #endif | 153 #endif |
| 153 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 154 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
| 154 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); | 155 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); |
| 155 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 156 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
| 156 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 157 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
| 157 const FilePath::CharType kCRLSetFilename[] = | 158 const FilePath::CharType kCRLSetFilename[] = |
| 158 FPL("Certificate Revocation Lists"); | 159 FPL("Certificate Revocation Lists"); |
| 159 const FilePath::CharType kCustomDictionaryFileName[] = | 160 const FilePath::CharType kCustomDictionaryFileName[] = |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 const wchar_t kMetroGetCurrentTabInfoMessage[] = | 242 const wchar_t kMetroGetCurrentTabInfoMessage[] = |
| 242 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; | 243 L"CHROME_METRO_GET_CURRENT_TAB_INFO"; |
| 243 const wchar_t kMetroRegistryPath[] = | 244 const wchar_t kMetroRegistryPath[] = |
| 244 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; | 245 L"Software\\" PRODUCT_STRING_PATH L"\\Metro"; |
| 245 const wchar_t kLaunchModeValue[] = L"launch_mode"; | 246 const wchar_t kLaunchModeValue[] = L"launch_mode"; |
| 246 #endif | 247 #endif |
| 247 | 248 |
| 248 } // namespace chrome | 249 } // namespace chrome |
| 249 | 250 |
| 250 #undef FPL | 251 #undef FPL |
| OLD | NEW |