Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // filenames | 45 // filenames |
| 46 extern const FilePath::CharType kArchivedHistoryFilename[]; | 46 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 47 extern const FilePath::CharType kCacheDirname[]; | 47 extern const FilePath::CharType kCacheDirname[]; |
| 48 extern const FilePath::CharType kMediaCacheDirname[]; | 48 extern const FilePath::CharType kMediaCacheDirname[]; |
| 49 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 49 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 50 extern const FilePath::CharType kAppCacheDirname[]; | 50 extern const FilePath::CharType kAppCacheDirname[]; |
| 51 extern const FilePath::CharType kThemePackFilename[]; | 51 extern const FilePath::CharType kThemePackFilename[]; |
| 52 extern const FilePath::CharType kCookieFilename[]; | 52 extern const FilePath::CharType kCookieFilename[]; |
| 53 extern const FilePath::CharType kOBCertFilename[]; | 53 extern const FilePath::CharType kOBCertFilename[]; |
| 54 extern const FilePath::CharType kExtensionsCookieFilename[]; | 54 extern const FilePath::CharType kExtensionsCookieFilename[]; |
| 55 extern const FilePath::CharType kExtensionsOBCertFilename[]; | |
|
wtc
2011/08/01 18:21:24
In the code review of another CL, I asked you to r
| |
| 55 extern const FilePath::CharType kIsolatedAppStateDirname[]; | 56 extern const FilePath::CharType kIsolatedAppStateDirname[]; |
| 56 extern const FilePath::CharType kFaviconsFilename[]; | 57 extern const FilePath::CharType kFaviconsFilename[]; |
| 57 extern const FilePath::CharType kHistoryFilename[]; | 58 extern const FilePath::CharType kHistoryFilename[]; |
| 58 extern const FilePath::CharType kLocalStateFilename[]; | 59 extern const FilePath::CharType kLocalStateFilename[]; |
| 59 extern const FilePath::CharType kPreferencesFilename[]; | 60 extern const FilePath::CharType kPreferencesFilename[]; |
| 60 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; | 61 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; |
| 61 extern const FilePath::CharType kSingletonCookieFilename[]; | 62 extern const FilePath::CharType kSingletonCookieFilename[]; |
| 62 extern const FilePath::CharType kSingletonSocketFilename[]; | 63 extern const FilePath::CharType kSingletonSocketFilename[]; |
| 63 extern const FilePath::CharType kSingletonLockFilename[]; | 64 extern const FilePath::CharType kSingletonLockFilename[]; |
| 64 extern const FilePath::CharType kThumbnailsFilename[]; | 65 extern const FilePath::CharType kThumbnailsFilename[]; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 96 // dismissed, display an option to suppress future message boxes from this | 97 // dismissed, display an option to suppress future message boxes from this |
| 97 // contents. | 98 // contents. |
| 98 extern const int kJavascriptMessageExpectedDelay; | 99 extern const int kJavascriptMessageExpectedDelay; |
| 99 | 100 |
| 100 // Are touch icons enabled? False by default. | 101 // Are touch icons enabled? False by default. |
| 101 extern const bool kEnableTouchIcon; | 102 extern const bool kEnableTouchIcon; |
| 102 | 103 |
| 103 } // namespace chrome | 104 } // namespace chrome |
| 104 | 105 |
| 105 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 106 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |