| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 extern const FilePath::CharType kLoginDataFileName[]; | 72 extern const FilePath::CharType kLoginDataFileName[]; |
| 73 extern const FilePath::CharType kManagedModePolicyFilename[]; | 73 extern const FilePath::CharType kManagedModePolicyFilename[]; |
| 74 extern const FilePath::CharType kMediaCacheDirname[]; | 74 extern const FilePath::CharType kMediaCacheDirname[]; |
| 75 extern const FilePath::CharType kNewTabThumbnailsFilename[]; | 75 extern const FilePath::CharType kNewTabThumbnailsFilename[]; |
| 76 extern const FilePath::CharType kOBCertFilename[]; | 76 extern const FilePath::CharType kOBCertFilename[]; |
| 77 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 77 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 78 extern const FilePath::CharType kPreferencesFilename[]; | 78 extern const FilePath::CharType kPreferencesFilename[]; |
| 79 extern const FilePath::CharType kReadmeFilename[]; | 79 extern const FilePath::CharType kReadmeFilename[]; |
| 80 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; | 80 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; |
| 81 extern const FilePath::CharType kServiceStateFileName[]; | 81 extern const FilePath::CharType kServiceStateFileName[]; |
| 82 extern const FilePath::CharType kShortcutsDatabaseName[]; |
| 82 extern const FilePath::CharType kSingletonCookieFilename[]; | 83 extern const FilePath::CharType kSingletonCookieFilename[]; |
| 83 extern const FilePath::CharType kSingletonLockFilename[]; | 84 extern const FilePath::CharType kSingletonLockFilename[]; |
| 84 extern const FilePath::CharType kSingletonSocketFilename[]; | 85 extern const FilePath::CharType kSingletonSocketFilename[]; |
| 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. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 extern const wchar_t kMetroChromeUserDataSubDir[]; | 142 extern const wchar_t kMetroChromeUserDataSubDir[]; |
| 142 // Used by Metro Chrome to initiate navigation and search requests. | 143 // Used by Metro Chrome to initiate navigation and search requests. |
| 143 extern const wchar_t kMetroNavigationAndSearchMessage[]; | 144 extern const wchar_t kMetroNavigationAndSearchMessage[]; |
| 144 // Used by Metro Chrome to get information about the current tab. | 145 // Used by Metro Chrome to get information about the current tab. |
| 145 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 146 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
| 146 #endif | 147 #endif |
| 147 | 148 |
| 148 } // namespace chrome | 149 } // namespace chrome |
| 149 | 150 |
| 150 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 151 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |