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 #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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 const bool kEnableTouchIcon = true; | 181 const bool kEnableTouchIcon = true; |
182 #else | 182 #else |
183 const bool kEnableTouchIcon = false; | 183 const bool kEnableTouchIcon = false; |
184 #endif | 184 #endif |
185 | 185 |
186 #if defined(OS_LINUX) | 186 #if defined(OS_LINUX) |
187 extern const int kLowestRendererOomScore = 300; | 187 extern const int kLowestRendererOomScore = 300; |
188 extern const int kHighestRendererOomScore = 1000; | 188 extern const int kHighestRendererOomScore = 1000; |
189 #endif | 189 #endif |
190 | 190 |
191 #if defined(OS_WIN) | |
192 // This is used by the PreRead experiment. | |
193 const char kPreReadEnvironmentVariable[] = "CHROME_PRE_READ_EXPERIMENT"; | |
194 #endif | |
195 | |
196 } // namespace chrome | 191 } // namespace chrome |
197 | 192 |
198 #undef FPL | 193 #undef FPL |
OLD | NEW |