| 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_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| 8 #define CONTENT_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 extern const char kGpuProcess[]; | 85 extern const char kGpuProcess[]; |
| 86 extern const char kGpuStartupDialog[]; | 86 extern const char kGpuStartupDialog[]; |
| 87 extern const char kIgnoreGpuBlacklist[]; | 87 extern const char kIgnoreGpuBlacklist[]; |
| 88 extern const char kInProcessGPU[]; | 88 extern const char kInProcessGPU[]; |
| 89 extern const char kInProcessPlugins[]; | 89 extern const char kInProcessPlugins[]; |
| 90 extern const char kInProcessWebGL[]; | 90 extern const char kInProcessWebGL[]; |
| 91 extern const char kJavaScriptFlags[]; | 91 extern const char kJavaScriptFlags[]; |
| 92 extern const char kLoadPlugin[]; | 92 extern const char kLoadPlugin[]; |
| 93 extern const char kLoggingLevel[]; | 93 extern const char kLoggingLevel[]; |
| 94 extern const char kLogPluginMessages[]; | 94 extern const char kLogPluginMessages[]; |
| 95 extern const char kHighLatencyAudio[]; | 95 extern const char kLowLatencyAudio[]; |
| 96 // TODO(jam): this doesn't belong in content. | 96 // TODO(jam): this doesn't belong in content. |
| 97 extern const char kNaClBrokerProcess[]; | 97 extern const char kNaClBrokerProcess[]; |
| 98 extern const char kNaClLoaderProcess[]; | 98 extern const char kNaClLoaderProcess[]; |
| 99 extern const char kNoDisplayingInsecureContent[]; | 99 extern const char kNoDisplayingInsecureContent[]; |
| 100 extern const char kNoJsRandomness[]; | 100 extern const char kNoJsRandomness[]; |
| 101 extern const char kNoReferrers[]; | 101 extern const char kNoReferrers[]; |
| 102 extern const char kNoSandbox[]; | 102 extern const char kNoSandbox[]; |
| 103 extern const char kPlaybackMode[]; | 103 extern const char kPlaybackMode[]; |
| 104 extern const char kPluginLauncher[]; | 104 extern const char kPluginLauncher[]; |
| 105 extern const char kPluginPath[]; | 105 extern const char kPluginPath[]; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 extern const char kScrollPixels[]; | 155 extern const char kScrollPixels[]; |
| 156 #endif | 156 #endif |
| 157 | 157 |
| 158 #if !defined(OFFICIAL_BUILD) | 158 #if !defined(OFFICIAL_BUILD) |
| 159 extern const char kRendererCheckFalseTest[]; | 159 extern const char kRendererCheckFalseTest[]; |
| 160 #endif | 160 #endif |
| 161 | 161 |
| 162 } // namespace switches | 162 } // namespace switches |
| 163 | 163 |
| 164 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 164 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |