| 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 extern const char kDisableGeolocation[]; | 50 extern const char kDisableGeolocation[]; |
| 51 CONTENT_EXPORT extern const char kUseGpuInTests[]; | 51 CONTENT_EXPORT extern const char kUseGpuInTests[]; |
| 52 extern const char kDisableGpu[]; | 52 extern const char kDisableGpu[]; |
| 53 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; | 53 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; |
| 54 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; | 54 CONTENT_EXPORT extern const char kDisableGpuProcessPrelaunch[]; |
| 55 extern const char kDisableGpuSandbox[]; | 55 extern const char kDisableGpuSandbox[]; |
| 56 extern const char kReduceGpuSandbox[]; | 56 extern const char kReduceGpuSandbox[]; |
| 57 extern const char kEnableGpuSandbox[]; | 57 extern const char kEnableGpuSandbox[]; |
| 58 extern const char kDisableGpuWatchdog[]; | 58 extern const char kDisableGpuWatchdog[]; |
| 59 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 59 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
| 60 CONTENT_EXPORT extern const char kDisableHTMLNotifications[]; |
| 60 extern const char kDisableHistogramCustomizer[]; | 61 extern const char kDisableHistogramCustomizer[]; |
| 61 extern const char kDisableImageTransportSurface[]; | 62 extern const char kDisableImageTransportSurface[]; |
| 62 CONTENT_EXPORT extern const char kDisableJava[]; | 63 CONTENT_EXPORT extern const char kDisableJava[]; |
| 63 CONTENT_EXPORT extern const char kDisableJavaScript[]; | 64 CONTENT_EXPORT extern const char kDisableJavaScript[]; |
| 64 extern const char kDisableJavaScriptI18NAPI[]; | 65 extern const char kDisableJavaScriptI18NAPI[]; |
| 65 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 66 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
| 66 CONTENT_EXPORT extern const char kDisableLogging[]; | 67 CONTENT_EXPORT extern const char kDisableLogging[]; |
| 67 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 68 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
| 68 CONTENT_EXPORT extern const char kDisablePlugins[]; | 69 CONTENT_EXPORT extern const char kDisablePlugins[]; |
| 69 extern const char kDisableRemoteFonts[]; | 70 extern const char kDisableRemoteFonts[]; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 extern const char kDisableCarbonInterposing[]; | 237 extern const char kDisableCarbonInterposing[]; |
| 237 #endif | 238 #endif |
| 238 | 239 |
| 239 #if defined(USE_AURA) | 240 #if defined(USE_AURA) |
| 240 CONTENT_EXPORT extern const char kTestCompositor[]; | 241 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 241 #endif | 242 #endif |
| 242 | 243 |
| 243 } // namespace switches | 244 } // namespace switches |
| 244 | 245 |
| 245 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 246 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |