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 #include "chrome/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 | 8 |
9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
10 | 10 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 #ifndef NDEBUG | 127 #ifndef NDEBUG |
128 const bool kRecordModeEnabled = true; | 128 const bool kRecordModeEnabled = true; |
129 #else | 129 #else |
130 const bool kRecordModeEnabled = false; | 130 const bool kRecordModeEnabled = false; |
131 #endif | 131 #endif |
132 | 132 |
133 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 133 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
134 | 134 |
135 const int kMaxSessionHistoryEntries = 50; | 135 const int kMaxSessionHistoryEntries = 50; |
136 | 136 |
| 137 const wchar_t kChromiumRendererIdProperty[] = L"ChromiumRendererId"; |
| 138 |
137 } // namespace chrome | 139 } // namespace chrome |
138 | 140 |
139 #undef FPL | 141 #undef FPL |
OLD | NEW |