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 | 9 |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 // but high enough that a web site can abuse location.hash for a little storage. | 76 // but high enough that a web site can abuse location.hash for a little storage. |
77 extern const size_t kMaxURLChars; | 77 extern const size_t kMaxURLChars; |
78 | 78 |
79 extern const bool kRecordModeEnabled; | 79 extern const bool kRecordModeEnabled; |
80 | 80 |
81 extern const int kHistogramSynchronizerReservedSequenceNumber; | 81 extern const int kHistogramSynchronizerReservedSequenceNumber; |
82 | 82 |
83 // The maximum number of session history entries per tab. | 83 // The maximum number of session history entries per tab. |
84 extern const int kMaxSessionHistoryEntries; | 84 extern const int kMaxSessionHistoryEntries; |
85 | 85 |
| 86 extern const wchar_t kChromiumRendererIdProperty[]; |
| 87 |
86 } // namespace chrome | 88 } // namespace chrome |
87 | 89 |
88 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 90 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |