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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // The language code used when the language of a page could not be detected. | 87 // The language code used when the language of a page could not be detected. |
88 // (Matches what the CLD -Compact Language Detection- library reports.) | 88 // (Matches what the CLD -Compact Language Detection- library reports.) |
89 extern const char* const kUnknownLanguageCode; | 89 extern const char* const kUnknownLanguageCode; |
90 | 90 |
91 // If another javascript message box is displayed within | 91 // If another javascript message box is displayed within |
92 // kJavascriptMessageExpectedDelay of a previous javascript message box being | 92 // kJavascriptMessageExpectedDelay of a previous javascript message box being |
93 // dismissed, display an option to suppress future message boxes from this | 93 // dismissed, display an option to suppress future message boxes from this |
94 // contents. | 94 // contents. |
95 extern const int kJavascriptMessageExpectedDelay; | 95 extern const int kJavascriptMessageExpectedDelay; |
96 | 96 |
| 97 // Are touch icons enabled? False by default. |
| 98 extern const bool kEnableTouchIcon; |
| 99 |
97 } // namespace chrome | 100 } // namespace chrome |
98 | 101 |
99 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 102 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |