OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 73 matching lines...) Loading... |
84 extern const size_t kMaxURLChars; | 84 extern const size_t kMaxURLChars; |
85 extern const size_t kMaxURLDisplayChars; | 85 extern const size_t kMaxURLDisplayChars; |
86 | 86 |
87 extern const bool kRecordModeEnabled; | 87 extern const bool kRecordModeEnabled; |
88 | 88 |
89 extern const int kHistogramSynchronizerReservedSequenceNumber; | 89 extern const int kHistogramSynchronizerReservedSequenceNumber; |
90 | 90 |
91 // The maximum number of session history entries per tab. | 91 // The maximum number of session history entries per tab. |
92 extern const int kMaxSessionHistoryEntries; | 92 extern const int kMaxSessionHistoryEntries; |
93 | 93 |
94 extern const wchar_t kChromiumRendererIdProperty[]; | |
95 | |
96 // The language code used when the language of a page could not be detected. | 94 // The language code used when the language of a page could not be detected. |
97 // (Matches what the CLD -Compact Language Detection- library reports.) | 95 // (Matches what the CLD -Compact Language Detection- library reports.) |
98 extern const char* const kUnknownLanguageCode; | 96 extern const char* const kUnknownLanguageCode; |
99 | 97 |
100 } // namespace chrome | 98 } // namespace chrome |
101 | 99 |
102 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 100 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |