| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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[] = |
| 125 FPL("Incognito Media Cache"); | 125 FPL("Incognito Media Cache"); |
| 126 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); | 126 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); |
| 127 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 127 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| 128 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 128 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
| 129 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 129 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
| 130 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); | 130 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); |
| 131 const FilePath::CharType kExtensionsOBCertFilename[] = |
| 132 FPL("Extension Origin Bound Certs"); |
| 131 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); | 133 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); |
| 132 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); | 134 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
| 133 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 135 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
| 134 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 136 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 135 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 137 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 136 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); | 138 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); |
| 137 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); | 139 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); |
| 138 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 140 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
| 139 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 141 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 140 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 142 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 176 |
| 175 #ifdef TOUCH_UI | 177 #ifdef TOUCH_UI |
| 176 const bool kEnableTouchIcon = true; | 178 const bool kEnableTouchIcon = true; |
| 177 #else | 179 #else |
| 178 const bool kEnableTouchIcon = false; | 180 const bool kEnableTouchIcon = false; |
| 179 #endif | 181 #endif |
| 180 | 182 |
| 181 } // namespace chrome | 183 } // namespace chrome |
| 182 | 184 |
| 183 #undef FPL | 185 #undef FPL |
| OLD | NEW |