| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 extern const char kGpuStartupDialog[]; | 82 extern const char kGpuStartupDialog[]; |
| 83 extern const char kIgnoreGpuBlacklist[]; | 83 extern const char kIgnoreGpuBlacklist[]; |
| 84 extern const char kInProcessGPU[]; | 84 extern const char kInProcessGPU[]; |
| 85 extern const char kInProcessPlugins[]; | 85 extern const char kInProcessPlugins[]; |
| 86 extern const char kInProcessWebGL[]; | 86 extern const char kInProcessWebGL[]; |
| 87 extern const char kJavaScriptFlags[]; | 87 extern const char kJavaScriptFlags[]; |
| 88 extern const char kLevelDBIndexedDatabase[]; | 88 extern const char kLevelDBIndexedDatabase[]; |
| 89 extern const char kLoadPlugin[]; | 89 extern const char kLoadPlugin[]; |
| 90 extern const char kLoggingLevel[]; | 90 extern const char kLoggingLevel[]; |
| 91 extern const char kLogPluginMessages[]; | 91 extern const char kLogPluginMessages[]; |
| 92 extern const char kLowLatencyAudio[]; |
| 92 // TODO(jam): this doesn't belong in content. | 93 // TODO(jam): this doesn't belong in content. |
| 93 extern const char kNaClBrokerProcess[]; | 94 extern const char kNaClBrokerProcess[]; |
| 94 extern const char kNaClLoaderProcess[]; | 95 extern const char kNaClLoaderProcess[]; |
| 95 extern const char kNoDisplayingInsecureContent[]; | 96 extern const char kNoDisplayingInsecureContent[]; |
| 96 extern const char kNoJsRandomness[]; | 97 extern const char kNoJsRandomness[]; |
| 97 extern const char kNoReferrers[]; | 98 extern const char kNoReferrers[]; |
| 98 extern const char kNoSandbox[]; | 99 extern const char kNoSandbox[]; |
| 99 extern const char kPlaybackMode[]; | 100 extern const char kPlaybackMode[]; |
| 100 extern const char kPluginLauncher[]; | 101 extern const char kPluginLauncher[]; |
| 101 extern const char kPluginPath[]; | 102 extern const char kPluginPath[]; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 extern const char kEnableP2PApi[]; | 151 extern const char kEnableP2PApi[]; |
| 151 #endif | 152 #endif |
| 152 | 153 |
| 153 #if !defined(OFFICIAL_BUILD) | 154 #if !defined(OFFICIAL_BUILD) |
| 154 extern const char kRendererCheckFalseTest[]; | 155 extern const char kRendererCheckFalseTest[]; |
| 155 #endif | 156 #endif |
| 156 | 157 |
| 157 } // namespace switches | 158 } // namespace switches |
| 158 | 159 |
| 159 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 160 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |