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 // 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 // Are touch icons enabled? False by default. | 109 // Are touch icons enabled? False by default. |
110 extern const bool kEnableTouchIcon; | 110 extern const bool kEnableTouchIcon; |
111 | 111 |
112 #if defined(OS_LINUX) | 112 #if defined(OS_LINUX) |
113 // The highest and lowest assigned OOM score adjustment | 113 // The highest and lowest assigned OOM score adjustment |
114 // (oom_score_adj) used by the OomPriority Manager. | 114 // (oom_score_adj) used by the OomPriority Manager. |
115 extern const int kLowestRendererOomScore; | 115 extern const int kLowestRendererOomScore; |
116 extern const int kHighestRendererOomScore; | 116 extern const int kHighestRendererOomScore; |
117 #endif | 117 #endif |
118 | 118 |
| 119 #if defined(OS_WIN) |
| 120 // This is used by the PreRead experiment. |
| 121 extern const char kPreReadEnvironmentVariable[]; |
| 122 #endif |
| 123 |
119 } // namespace chrome | 124 } // namespace chrome |
120 | 125 |
121 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 126 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |