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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 const char* const kUnknownLanguageCode = "und"; | 170 const char* const kUnknownLanguageCode = "und"; |
171 | 171 |
172 const int kJavascriptMessageExpectedDelay = 1000; | 172 const int kJavascriptMessageExpectedDelay = 1000; |
173 | 173 |
174 #ifdef TOUCH_UI | 174 #ifdef TOUCH_UI |
175 const bool kEnableTouchIcon = true; | 175 const bool kEnableTouchIcon = true; |
176 #else | 176 #else |
177 const bool kEnableTouchIcon = false; | 177 const bool kEnableTouchIcon = false; |
178 #endif | 178 #endif |
179 | 179 |
| 180 #if defined(OS_LINUX) |
| 181 extern const int kLowestRendererOomScore = 300; |
| 182 extern const int kHighestRendererOomScore = 1000; |
| 183 #endif |
| 184 |
180 } // namespace chrome | 185 } // namespace chrome |
181 | 186 |
182 #undef FPL | 187 #undef FPL |
OLD | NEW |