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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 extern const base::FilePath::CharType kServiceStateFileName[]; | 79 extern const base::FilePath::CharType kServiceStateFileName[]; |
80 extern const base::FilePath::CharType kShortcutsDatabaseName[]; | 80 extern const base::FilePath::CharType kShortcutsDatabaseName[]; |
81 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 81 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
82 extern const base::FilePath::CharType kSingletonLockFilename[]; | 82 extern const base::FilePath::CharType kSingletonLockFilename[]; |
83 extern const base::FilePath::CharType kSingletonSocketFilename[]; | 83 extern const base::FilePath::CharType kSingletonSocketFilename[]; |
84 extern const base::FilePath::CharType kSyncCredentialsFilename[]; | 84 extern const base::FilePath::CharType kSyncCredentialsFilename[]; |
85 extern const base::FilePath::CharType kThemePackFilename[]; | 85 extern const base::FilePath::CharType kThemePackFilename[]; |
86 extern const base::FilePath::CharType kThumbnailsFilename[]; | 86 extern const base::FilePath::CharType kThumbnailsFilename[]; |
87 extern const base::FilePath::CharType kTopSitesFilename[]; | 87 extern const base::FilePath::CharType kTopSitesFilename[]; |
88 extern const base::FilePath::CharType kWebAppDirname[]; | 88 extern const base::FilePath::CharType kWebAppDirname[]; |
89 extern const base::FilePath::CharType kWebDataFilename[]; | |
90 | 89 |
91 // File name of the Pepper Flash plugin on different platforms. | 90 // File name of the Pepper Flash plugin on different platforms. |
92 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; | 91 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; |
93 | 92 |
94 // directory names | 93 // directory names |
95 extern const wchar_t kUserDataDirname[]; | 94 extern const wchar_t kUserDataDirname[]; |
96 | 95 |
97 #if defined(OS_CHROMEOS) | 96 #if defined(OS_CHROMEOS) |
98 extern const base::FilePath::CharType kDriveCacheDirname[]; | 97 extern const base::FilePath::CharType kDriveCacheDirname[]; |
99 #endif // defined(OS_CHROMEOS) | 98 #endif // defined(OS_CHROMEOS) |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 // Used by Metro Chrome to get information about the current tab. | 136 // Used by Metro Chrome to get information about the current tab. |
138 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 137 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
139 // Used by Metro Chrome to store activation state. | 138 // Used by Metro Chrome to store activation state. |
140 extern const wchar_t kMetroRegistryPath[]; | 139 extern const wchar_t kMetroRegistryPath[]; |
141 extern const wchar_t kLaunchModeValue[]; | 140 extern const wchar_t kLaunchModeValue[]; |
142 #endif | 141 #endif |
143 | 142 |
144 } // namespace chrome | 143 } // namespace chrome |
145 | 144 |
146 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 145 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |