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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 extern const FilePath::CharType kLocalStateFilename[]; | 58 extern const FilePath::CharType kLocalStateFilename[]; |
59 extern const FilePath::CharType kPreferencesFilename[]; | 59 extern const FilePath::CharType kPreferencesFilename[]; |
60 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; | 60 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; |
61 extern const FilePath::CharType kSingletonCookieFilename[]; | 61 extern const FilePath::CharType kSingletonCookieFilename[]; |
62 extern const FilePath::CharType kSingletonSocketFilename[]; | 62 extern const FilePath::CharType kSingletonSocketFilename[]; |
63 extern const FilePath::CharType kSingletonLockFilename[]; | 63 extern const FilePath::CharType kSingletonLockFilename[]; |
64 extern const FilePath::CharType kThumbnailsFilename[]; | 64 extern const FilePath::CharType kThumbnailsFilename[]; |
65 extern const FilePath::CharType kNewTabThumbnailsFilename[]; | 65 extern const FilePath::CharType kNewTabThumbnailsFilename[]; |
66 extern const FilePath::CharType kTopSitesFilename[]; | 66 extern const FilePath::CharType kTopSitesFilename[]; |
67 extern const wchar_t kUserDataDirname[]; | 67 extern const wchar_t kUserDataDirname[]; |
68 extern const FilePath::CharType kUserScriptsDirname[]; | |
69 extern const FilePath::CharType kWebDataFilename[]; | 68 extern const FilePath::CharType kWebDataFilename[]; |
70 extern const FilePath::CharType kBookmarksFileName[]; | 69 extern const FilePath::CharType kBookmarksFileName[]; |
71 extern const FilePath::CharType kHistoryBookmarksFileName[]; | 70 extern const FilePath::CharType kHistoryBookmarksFileName[]; |
72 extern const FilePath::CharType kCustomDictionaryFileName[]; | 71 extern const FilePath::CharType kCustomDictionaryFileName[]; |
73 extern const FilePath::CharType kLoginDataFileName[]; | 72 extern const FilePath::CharType kLoginDataFileName[]; |
74 extern const FilePath::CharType kJumpListIconDirname[]; | 73 extern const FilePath::CharType kJumpListIconDirname[]; |
75 extern const FilePath::CharType kWebAppDirname[]; | 74 extern const FilePath::CharType kWebAppDirname[]; |
76 extern const FilePath::CharType kServiceStateFileName[]; | 75 extern const FilePath::CharType kServiceStateFileName[]; |
77 | 76 |
78 extern const int kStatsMaxThreads; | 77 extern const int kStatsMaxThreads; |
(...skipping 17 matching lines...) Expand all Loading... |
96 // dismissed, display an option to suppress future message boxes from this | 95 // dismissed, display an option to suppress future message boxes from this |
97 // contents. | 96 // contents. |
98 extern const int kJavascriptMessageExpectedDelay; | 97 extern const int kJavascriptMessageExpectedDelay; |
99 | 98 |
100 // Are touch icons enabled? False by default. | 99 // Are touch icons enabled? False by default. |
101 extern const bool kEnableTouchIcon; | 100 extern const bool kEnableTouchIcon; |
102 | 101 |
103 } // namespace chrome | 102 } // namespace chrome |
104 | 103 |
105 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 104 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |