Chromium Code Reviews| 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 // 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 27 matching lines...) Expand all Loading... | |
| 38 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; | 38 CONTENT_EXPORT extern const char kDisableDeviceOrientation[]; |
| 39 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; | 39 CONTENT_EXPORT extern const char kDisableExperimentalWebGL[]; |
| 40 extern const char kDisableFileSystem[]; | 40 extern const char kDisableFileSystem[]; |
| 41 extern const char kDisableGeolocation[]; | 41 extern const char kDisableGeolocation[]; |
| 42 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; | 42 CONTENT_EXPORT extern const char kDisableGLMultisampling[]; |
| 43 extern const char kDisableGLSLTranslator[]; | 43 extern const char kDisableGLSLTranslator[]; |
| 44 extern const char kDisableGpuDriverBugWorkarounds[]; | 44 extern const char kDisableGpuDriverBugWorkarounds[]; |
| 45 extern const char kDisableGpuSandbox[]; | 45 extern const char kDisableGpuSandbox[]; |
| 46 extern const char kDisableGpuWatchdog[]; | 46 extern const char kDisableGpuWatchdog[]; |
| 47 CONTENT_EXPORT extern const char kDisableHangMonitor[]; | 47 CONTENT_EXPORT extern const char kDisableHangMonitor[]; |
| 48 extern const char kDisableImageTransportSurface[]; | |
| 49 extern const char kDisableIndexedDatabase[]; | |
|
jonathan.backer
2011/12/08 16:07:03
Potential merge conflict?
apatrick_chromium
2011/12/08 21:20:06
Yep.
| |
| 48 extern const char kEnableIndexedDBForWorkers[]; | 50 extern const char kEnableIndexedDBForWorkers[]; |
| 49 CONTENT_EXPORT extern const char kDisableJava[]; | 51 CONTENT_EXPORT extern const char kDisableJava[]; |
| 50 CONTENT_EXPORT extern const char kDisableJavaScript[]; | 52 CONTENT_EXPORT extern const char kDisableJavaScript[]; |
| 51 extern const char kDisableJavaScriptI18NAPI[]; | 53 extern const char kDisableJavaScriptI18NAPI[]; |
| 52 CONTENT_EXPORT extern const char kDisableLocalStorage[]; | 54 CONTENT_EXPORT extern const char kDisableLocalStorage[]; |
| 53 CONTENT_EXPORT extern const char kDisableLogging[]; | 55 CONTENT_EXPORT extern const char kDisableLogging[]; |
| 54 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; | 56 CONTENT_EXPORT extern const char kDisableSmoothScrolling[]; |
| 55 CONTENT_EXPORT extern const char kDisablePlugins[]; | 57 CONTENT_EXPORT extern const char kDisablePlugins[]; |
| 56 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; | 58 CONTENT_EXPORT extern const char kDisablePopupBlocking[]; |
| 57 extern const char kDisableRendererAccessibility[]; | 59 extern const char kDisableRendererAccessibility[]; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 175 extern const char kUseSystemSSL[]; | 177 extern const char kUseSystemSSL[]; |
| 176 #endif | 178 #endif |
| 177 | 179 |
| 178 #if !defined(OFFICIAL_BUILD) | 180 #if !defined(OFFICIAL_BUILD) |
| 179 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 181 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
| 180 #endif | 182 #endif |
| 181 | 183 |
| 182 } // namespace switches | 184 } // namespace switches |
| 183 | 185 |
| 184 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 186 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |