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 // A handful of resource-like constants related to the Chrome application. | 5 // A handful of resource-like constants related to the Chrome application. |
6 | 6 |
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ |
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ | 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ |
9 | 9 |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 extern const FilePath::CharType kOBCertFilename[]; | 75 extern const FilePath::CharType kOBCertFilename[]; |
76 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 76 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
77 extern const FilePath::CharType kPreferencesFilename[]; | 77 extern const FilePath::CharType kPreferencesFilename[]; |
78 extern const FilePath::CharType kReadmeFilename[]; | 78 extern const FilePath::CharType kReadmeFilename[]; |
79 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; | 79 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; |
80 extern const FilePath::CharType kServiceStateFileName[]; | 80 extern const FilePath::CharType kServiceStateFileName[]; |
81 extern const FilePath::CharType kShortcutsDatabaseName[]; | 81 extern const FilePath::CharType kShortcutsDatabaseName[]; |
82 extern const FilePath::CharType kSingletonCookieFilename[]; | 82 extern const FilePath::CharType kSingletonCookieFilename[]; |
83 extern const FilePath::CharType kSingletonLockFilename[]; | 83 extern const FilePath::CharType kSingletonLockFilename[]; |
84 extern const FilePath::CharType kSingletonSocketFilename[]; | 84 extern const FilePath::CharType kSingletonSocketFilename[]; |
| 85 extern const FilePath::CharType kSyncCredentialsFilename[]; |
85 extern const FilePath::CharType kThemePackFilename[]; | 86 extern const FilePath::CharType kThemePackFilename[]; |
86 extern const FilePath::CharType kThumbnailsFilename[]; | 87 extern const FilePath::CharType kThumbnailsFilename[]; |
87 extern const FilePath::CharType kTopSitesFilename[]; | 88 extern const FilePath::CharType kTopSitesFilename[]; |
88 extern const FilePath::CharType kWebAppDirname[]; | 89 extern const FilePath::CharType kWebAppDirname[]; |
89 extern const FilePath::CharType kWebDataFilename[]; | 90 extern const FilePath::CharType kWebDataFilename[]; |
90 | 91 |
91 // File name of the Pepper Flash plugin on different platforms. | 92 // File name of the Pepper Flash plugin on different platforms. |
92 extern const FilePath::CharType kPepperFlashPluginFilename[]; | 93 extern const FilePath::CharType kPepperFlashPluginFilename[]; |
93 | 94 |
94 // directory names | 95 // directory names |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 extern const wchar_t kMetroChromeUserDataSubDir[]; | 135 extern const wchar_t kMetroChromeUserDataSubDir[]; |
135 // Used by Metro Chrome to initiate navigation and search requests. | 136 // Used by Metro Chrome to initiate navigation and search requests. |
136 extern const wchar_t kMetroNavigationAndSearchMessage[]; | 137 extern const wchar_t kMetroNavigationAndSearchMessage[]; |
137 // Used by Metro Chrome to get information about the current tab. | 138 // Used by Metro Chrome to get information about the current tab. |
138 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 139 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
139 #endif | 140 #endif |
140 | 141 |
141 } // namespace chrome | 142 } // namespace chrome |
142 | 143 |
143 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 144 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |