| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; | 63 extern const base::FilePath::CharType kProtectedPreferencesFilenameDeprecated[]; |
| 64 extern const base::FilePath::CharType kReadmeFilename[]; | 64 extern const base::FilePath::CharType kReadmeFilename[]; |
| 65 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; | 65 extern const base::FilePath::CharType kSafeBrowsingBaseFilename[]; |
| 66 extern const base::FilePath::CharType kSecurePreferencesFilename[]; | 66 extern const base::FilePath::CharType kSecurePreferencesFilename[]; |
| 67 extern const base::FilePath::CharType kServiceStateFileName[]; | 67 extern const base::FilePath::CharType kServiceStateFileName[]; |
| 68 extern const base::FilePath::CharType kSingletonCookieFilename[]; | 68 extern const base::FilePath::CharType kSingletonCookieFilename[]; |
| 69 extern const base::FilePath::CharType kSingletonLockFilename[]; | 69 extern const base::FilePath::CharType kSingletonLockFilename[]; |
| 70 extern const base::FilePath::CharType kSingletonSocketFilename[]; | 70 extern const base::FilePath::CharType kSingletonSocketFilename[]; |
| 71 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; | 71 extern const base::FilePath::CharType kSupervisedUserSettingsFilename[]; |
| 72 extern const base::FilePath::CharType kThemePackFilename[]; | 72 extern const base::FilePath::CharType kThemePackFilename[]; |
| 73 extern const base::FilePath::CharType kThemePackMaterialDesignFilename[]; | |
| 74 extern const base::FilePath::CharType kWebAppDirname[]; | 73 extern const base::FilePath::CharType kWebAppDirname[]; |
| 75 | 74 |
| 76 #if defined(OS_WIN) | 75 #if defined(OS_WIN) |
| 77 extern const base::FilePath::CharType kJumpListIconDirname[]; | 76 extern const base::FilePath::CharType kJumpListIconDirname[]; |
| 78 #endif | 77 #endif |
| 79 | 78 |
| 80 // File name of the Pepper Flash plugin on different platforms. | 79 // File name of the Pepper Flash plugin on different platforms. |
| 81 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; | 80 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; |
| 82 | 81 |
| 83 // directory names | 82 // directory names |
| (...skipping 30 matching lines...) Expand all Loading... |
| 114 | 113 |
| 115 // Used to identify the application to the system AV function in Windows. | 114 // Used to identify the application to the system AV function in Windows. |
| 116 extern const char kApplicationClientIDStringForAVScanning[]; | 115 extern const char kApplicationClientIDStringForAVScanning[]; |
| 117 | 116 |
| 118 // The largest reasonable length we'd assume for a meta tag attribute. | 117 // The largest reasonable length we'd assume for a meta tag attribute. |
| 119 extern const size_t kMaxMetaTagAttributeLength; | 118 extern const size_t kMaxMetaTagAttributeLength; |
| 120 | 119 |
| 121 } // namespace chrome | 120 } // namespace chrome |
| 122 | 121 |
| 123 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 122 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |