| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 extern const wchar_t kNaClAppName[]; | 50 extern const wchar_t kNaClAppName[]; |
| 51 extern const FilePath::CharType kExtensionFileExtension[]; | 51 extern const FilePath::CharType kExtensionFileExtension[]; |
| 52 extern const FilePath::CharType kExtensionKeyFileExtension[]; | 52 extern const FilePath::CharType kExtensionKeyFileExtension[]; |
| 53 | 53 |
| 54 // filenames | 54 // filenames |
| 55 extern const FilePath::CharType kArchivedHistoryFilename[]; | 55 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 56 extern const FilePath::CharType kCacheDirname[]; | 56 extern const FilePath::CharType kCacheDirname[]; |
| 57 extern const FilePath::CharType kCRLSetFilename[]; | 57 extern const FilePath::CharType kCRLSetFilename[]; |
| 58 extern const FilePath::CharType kMediaCacheDirname[]; | 58 extern const FilePath::CharType kMediaCacheDirname[]; |
| 59 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 59 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 60 extern const FilePath::CharType kAppCacheDirname[]; | |
| 61 extern const FilePath::CharType kThemePackFilename[]; | 60 extern const FilePath::CharType kThemePackFilename[]; |
| 62 extern const FilePath::CharType kCookieFilename[]; | 61 extern const FilePath::CharType kCookieFilename[]; |
| 63 extern const FilePath::CharType kOBCertFilename[]; | 62 extern const FilePath::CharType kOBCertFilename[]; |
| 64 extern const FilePath::CharType kExtensionsCookieFilename[]; | 63 extern const FilePath::CharType kExtensionsCookieFilename[]; |
| 65 extern const FilePath::CharType kIsolatedAppStateDirname[]; | 64 extern const FilePath::CharType kIsolatedAppStateDirname[]; |
| 66 extern const FilePath::CharType kFaviconsFilename[]; | 65 extern const FilePath::CharType kFaviconsFilename[]; |
| 67 extern const FilePath::CharType kHistoryFilename[]; | 66 extern const FilePath::CharType kHistoryFilename[]; |
| 68 extern const FilePath::CharType kLocalStateFilename[]; | 67 extern const FilePath::CharType kLocalStateFilename[]; |
| 69 extern const FilePath::CharType kPreferencesFilename[]; | 68 extern const FilePath::CharType kPreferencesFilename[]; |
| 70 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; | 69 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 #endif | 116 #endif |
| 118 | 117 |
| 119 #if defined(OS_WIN) | 118 #if defined(OS_WIN) |
| 120 // This is used by the PreRead experiment. | 119 // This is used by the PreRead experiment. |
| 121 extern const char kPreReadEnvironmentVariable[]; | 120 extern const char kPreReadEnvironmentVariable[]; |
| 122 #endif | 121 #endif |
| 123 | 122 |
| 124 } // namespace chrome | 123 } // namespace chrome |
| 125 | 124 |
| 126 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 125 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |