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/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 extern const base::FilePath::CharType kJumpListIconDirname[]; | 65 extern const base::FilePath::CharType kJumpListIconDirname[]; |
66 extern const base::FilePath::CharType kLocalStateFilename[]; | 66 extern const base::FilePath::CharType kLocalStateFilename[]; |
67 extern const base::FilePath::CharType kLocalStorePoolName[]; | 67 extern const base::FilePath::CharType kLocalStorePoolName[]; |
68 extern const base::FilePath::CharType kLoginDataFileName[]; | 68 extern const base::FilePath::CharType kLoginDataFileName[]; |
69 extern const base::FilePath::CharType kManagedUserSettingsFilename[]; | 69 extern const base::FilePath::CharType kManagedUserSettingsFilename[]; |
70 extern const base::FilePath::CharType kMediaCacheDirname[]; | 70 extern const base::FilePath::CharType kMediaCacheDirname[]; |
71 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; | 71 extern const base::FilePath::CharType kNewTabThumbnailsFilename[]; |
72 extern const base::FilePath::CharType kOBCertFilename[]; | 72 extern const base::FilePath::CharType kOBCertFilename[]; |
73 extern const base::FilePath::CharType kPreferencesFilename[]; | 73 extern const base::FilePath::CharType kPreferencesFilename[]; |
74 extern const base::FilePath::CharType kReadmeFilename[]; | 74 extern const base::FilePath::CharType kReadmeFilename[]; |
| 75 extern const base::FilePath::CharType kResetPromptMementoFilename[]; |
75 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; | 76 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; |
76 extern const base::FilePath::CharType kServiceStateFileName[]; | 77 extern const base::FilePath::CharType kServiceStateFileName[]; |
77 extern const base::FilePath::CharType kShortcutsDatabaseName[]; | 78 extern const base::FilePath::CharType kShortcutsDatabaseName[]; |
78 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 79 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
79 extern const base::FilePath::CharType kSingletonLockFilename[]; | 80 extern const base::FilePath::CharType kSingletonLockFilename[]; |
80 extern const base::FilePath::CharType kSingletonSocketFilename[]; | 81 extern const base::FilePath::CharType kSingletonSocketFilename[]; |
81 extern const base::FilePath::CharType kSyncCredentialsFilename[]; | 82 extern const base::FilePath::CharType kSyncCredentialsFilename[]; |
82 extern const base::FilePath::CharType kThemePackFilename[]; | 83 extern const base::FilePath::CharType kThemePackFilename[]; |
83 extern const base::FilePath::CharType kThumbnailsFilename[]; | 84 extern const base::FilePath::CharType kThumbnailsFilename[]; |
84 extern const base::FilePath::CharType kTopSitesFilename[]; | 85 extern const base::FilePath::CharType kTopSitesFilename[]; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 // This must be kept in sync with TestingProfile::kTestUserProfileDir. | 151 // This must be kept in sync with TestingProfile::kTestUserProfileDir. |
151 extern const char kTestUserProfileDir[]; | 152 extern const char kTestUserProfileDir[]; |
152 #endif | 153 #endif |
153 | 154 |
154 // Used to identify the application to the system AV function in Windows. | 155 // Used to identify the application to the system AV function in Windows. |
155 extern const char kApplicationClientIDStringForAVScanning[]; | 156 extern const char kApplicationClientIDStringForAVScanning[]; |
156 | 157 |
157 } // namespace chrome | 158 } // namespace chrome |
158 | 159 |
159 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 160 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |