| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 extern const char kForceFieldTrials[]; | 135 extern const char kForceFieldTrials[]; |
| 136 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; | 136 CONTENT_EXPORT extern const char kForceRendererAccessibility[]; |
| 137 extern const char kGpuDeviceID[]; | 137 extern const char kGpuDeviceID[]; |
| 138 extern const char kGpuDriverVendor[]; | 138 extern const char kGpuDriverVendor[]; |
| 139 extern const char kGpuDriverVersion[]; | 139 extern const char kGpuDriverVersion[]; |
| 140 extern const char kGpuLauncher[]; | 140 extern const char kGpuLauncher[]; |
| 141 CONTENT_EXPORT extern const char kGpuProcess[]; | 141 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 142 extern const char kGpuStartupDialog[]; | 142 extern const char kGpuStartupDialog[]; |
| 143 extern const char kGpuVendorID[]; | 143 extern const char kGpuVendorID[]; |
| 144 CONTENT_EXPORT extern const char kGuestRenderer[]; | 144 CONTENT_EXPORT extern const char kGuestRenderer[]; |
| 145 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
| 145 extern const char kInProcessGPU[]; | 146 extern const char kInProcessGPU[]; |
| 146 extern const char kInProcessPlugins[]; | 147 extern const char kInProcessPlugins[]; |
| 147 CONTENT_EXPORT extern const char kInProcessWebGL[]; | 148 CONTENT_EXPORT extern const char kInProcessWebGL[]; |
| 148 CONTENT_EXPORT extern const char kJavaScriptFlags[]; | 149 CONTENT_EXPORT extern const char kJavaScriptFlags[]; |
| 149 extern const char kLoadPlugin[]; | 150 extern const char kLoadPlugin[]; |
| 150 CONTENT_EXPORT extern const char kLoggingLevel[]; | 151 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 151 extern const char kLogPluginMessages[]; | 152 extern const char kLogPluginMessages[]; |
| 152 // TODO(jam): this doesn't belong in content. | 153 // TODO(jam): this doesn't belong in content. |
| 153 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; | 154 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; |
| 154 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; | 155 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 235 |
| 235 #if defined(USE_AURA) | 236 #if defined(USE_AURA) |
| 236 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 237 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 237 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 238 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 238 CONTENT_EXPORT extern const char kTestCompositor[]; | 239 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 239 #endif | 240 #endif |
| 240 | 241 |
| 241 } // namespace switches | 242 } // namespace switches |
| 242 | 243 |
| 243 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 244 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |