OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Defines all the "content" command-line switches. | 5 // Defines all the "content" command-line switches. |
6 | 6 |
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 CONTENT_EXPORT extern const char kUtilityProcess[]; | 175 CONTENT_EXPORT extern const char kUtilityProcess[]; |
176 extern const char kUtilityProcessAllowedDir[]; | 176 extern const char kUtilityProcessAllowedDir[]; |
177 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; | 177 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; |
178 extern const char kWebCoreLogChannels[]; | 178 extern const char kWebCoreLogChannels[]; |
179 extern const char kWebWorkerProcessPerCore[]; | 179 extern const char kWebWorkerProcessPerCore[]; |
180 extern const char kWebWorkerShareProcesses[]; | 180 extern const char kWebWorkerShareProcesses[]; |
181 CONTENT_EXPORT extern const char kWorkerProcess[]; | 181 CONTENT_EXPORT extern const char kWorkerProcess[]; |
182 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 182 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
183 CONTENT_EXPORT extern const char kZygoteProcess[]; | 183 CONTENT_EXPORT extern const char kZygoteProcess[]; |
184 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; | 184 CONTENT_EXPORT extern const char kDisableSoftwareRasterizer[]; |
| 185 extern const char kDefaultTileWidth[]; |
| 186 extern const char kDefaultTileHeight[]; |
| 187 extern const char kMaxUntiledLayerWidth[]; |
| 188 extern const char kMaxUntiledLayerHeight[]; |
185 | 189 |
186 extern const char kEnableVisualWordMovement[]; | 190 extern const char kEnableVisualWordMovement[]; |
187 | 191 |
188 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 192 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
189 extern const char kScrollPixels[]; | 193 extern const char kScrollPixels[]; |
190 #endif | 194 #endif |
191 | 195 |
192 #if defined(OS_MACOSX) || defined(OS_WIN) | 196 #if defined(OS_MACOSX) || defined(OS_WIN) |
193 extern const char kUseSystemSSL[]; | 197 extern const char kUseSystemSSL[]; |
194 #endif | 198 #endif |
195 | 199 |
196 extern const char kEnablePerTilePainting[]; | 200 extern const char kEnablePerTilePainting[]; |
197 | 201 |
198 #if defined(USE_AURA) | 202 #if defined(USE_AURA) |
199 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 203 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
200 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 204 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
201 CONTENT_EXPORT extern const char kTestCompositor[]; | 205 CONTENT_EXPORT extern const char kTestCompositor[]; |
202 #endif | 206 #endif |
203 | 207 |
204 } // namespace switches | 208 } // namespace switches |
205 | 209 |
206 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 210 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |