| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 134 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 135 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 135 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 136 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); | 136 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); |
| 137 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); | 137 const FilePath::CharType kSingletonCookieFilename[] = FPL("SingletonCookie"); |
| 138 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 138 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
| 139 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 139 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 140 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 140 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
| 141 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); | 141 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); |
| 142 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); | 142 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); |
| 143 const wchar_t kUserDataDirname[] = L"User Data"; | 143 const wchar_t kUserDataDirname[] = L"User Data"; |
| 144 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts"); | |
| 145 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); | 144 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); |
| 146 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); | 145 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); |
| 147 const FilePath::CharType kHistoryBookmarksFileName[] = | 146 const FilePath::CharType kHistoryBookmarksFileName[] = |
| 148 FPL("Bookmarks From History"); | 147 FPL("Bookmarks From History"); |
| 149 const FilePath::CharType kCustomDictionaryFileName[] = | 148 const FilePath::CharType kCustomDictionaryFileName[] = |
| 150 FPL("Custom Dictionary.txt"); | 149 FPL("Custom Dictionary.txt"); |
| 151 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 150 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
| 152 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); | 151 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
| 153 const FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); | 152 const FilePath::CharType kWebAppDirname[] = FPL("Web Applications"); |
| 154 const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); | 153 const FilePath::CharType kServiceStateFileName[] = FPL("Service State"); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 174 | 173 |
| 175 #ifdef TOUCH_UI | 174 #ifdef TOUCH_UI |
| 176 const bool kEnableTouchIcon = true; | 175 const bool kEnableTouchIcon = true; |
| 177 #else | 176 #else |
| 178 const bool kEnableTouchIcon = false; | 177 const bool kEnableTouchIcon = false; |
| 179 #endif | 178 #endif |
| 180 | 179 |
| 181 } // namespace chrome | 180 } // namespace chrome |
| 182 | 181 |
| 183 #undef FPL | 182 #undef FPL |
| OLD | NEW |