| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 extern const wchar_t kCrashReportLog[]; | 45 extern const wchar_t kCrashReportLog[]; |
| 46 extern const wchar_t kTestingInterfaceDLL[]; | 46 extern const wchar_t kTestingInterfaceDLL[]; |
| 47 extern const char kInitialProfile[]; | 47 extern const char kInitialProfile[]; |
| 48 extern const char kMultiProfileDirPrefix[]; | 48 extern const char kMultiProfileDirPrefix[]; |
| 49 extern const wchar_t kBrowserResourcesDll[]; | 49 extern const wchar_t kBrowserResourcesDll[]; |
| 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 #if defined(OS_ANDROID) |
| 56 extern const FilePath::CharType kAndroidCacheFilename[]; |
| 57 #endif |
| 55 extern const FilePath::CharType kArchivedHistoryFilename[]; | 58 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 56 extern const FilePath::CharType kCacheDirname[]; | 59 extern const FilePath::CharType kCacheDirname[]; |
| 57 extern const FilePath::CharType kCRLSetFilename[]; | 60 extern const FilePath::CharType kCRLSetFilename[]; |
| 58 extern const FilePath::CharType kMediaCacheDirname[]; | 61 extern const FilePath::CharType kMediaCacheDirname[]; |
| 59 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 62 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 60 extern const FilePath::CharType kThemePackFilename[]; | 63 extern const FilePath::CharType kThemePackFilename[]; |
| 61 extern const FilePath::CharType kCookieFilename[]; | 64 extern const FilePath::CharType kCookieFilename[]; |
| 62 extern const FilePath::CharType kOBCertFilename[]; | 65 extern const FilePath::CharType kOBCertFilename[]; |
| 63 extern const FilePath::CharType kExtensionsCookieFilename[]; | 66 extern const FilePath::CharType kExtensionsCookieFilename[]; |
| 64 extern const FilePath::CharType kIsolatedAppStateDirname[]; | 67 extern const FilePath::CharType kIsolatedAppStateDirname[]; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 #if defined(OS_WIN) | 133 #if defined(OS_WIN) |
| 131 // This is used by the PreRead experiment. | 134 // This is used by the PreRead experiment. |
| 132 extern const char kPreReadEnvironmentVariable[]; | 135 extern const char kPreReadEnvironmentVariable[]; |
| 133 // Used by Metro Chrome to create the profile under a custom subdirectory. | 136 // Used by Metro Chrome to create the profile under a custom subdirectory. |
| 134 extern const wchar_t kMetroChromeUserDataSubDir[]; | 137 extern const wchar_t kMetroChromeUserDataSubDir[]; |
| 135 #endif | 138 #endif |
| 136 | 139 |
| 137 } // namespace chrome | 140 } // namespace chrome |
| 138 | 141 |
| 139 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 142 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |