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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 extern const char kInProcessPlugins[]; | 87 extern const char kInProcessPlugins[]; |
88 extern const char kInProcessWebGL[]; | 88 extern const char kInProcessWebGL[]; |
89 extern const char kJavaScriptFlags[]; | 89 extern const char kJavaScriptFlags[]; |
90 extern const char kLoadPlugin[]; | 90 extern const char kLoadPlugin[]; |
91 extern const char kLoggingLevel[]; | 91 extern const char kLoggingLevel[]; |
92 extern const char kLogPluginMessages[]; | 92 extern const char kLogPluginMessages[]; |
93 extern const char kLowLatencyAudio[]; | 93 extern const char kLowLatencyAudio[]; |
94 // TODO(jam): this doesn't belong in content. | 94 // TODO(jam): this doesn't belong in content. |
95 extern const char kNaClBrokerProcess[]; | 95 extern const char kNaClBrokerProcess[]; |
96 extern const char kNaClLoaderProcess[]; | 96 extern const char kNaClLoaderProcess[]; |
97 // TODO(bradchen): remove kNaClLinuxHelper switch. | |
98 // This switch enables the experimental lightweight nacl_helper for Linux. | |
99 // It will be going away soon, when the helper is enabled permanently. | |
100 extern const char kNaClLinuxHelper[]; | |
101 extern const char kNoDisplayingInsecureContent[]; | 97 extern const char kNoDisplayingInsecureContent[]; |
102 extern const char kNoJsRandomness[]; | 98 extern const char kNoJsRandomness[]; |
103 extern const char kNoReferrers[]; | 99 extern const char kNoReferrers[]; |
104 extern const char kNoSandbox[]; | 100 extern const char kNoSandbox[]; |
105 extern const char kPlaybackMode[]; | 101 extern const char kPlaybackMode[]; |
106 extern const char kPluginLauncher[]; | 102 extern const char kPluginLauncher[]; |
107 extern const char kPluginPath[]; | 103 extern const char kPluginPath[]; |
108 extern const char kPluginProcess[]; | 104 extern const char kPluginProcess[]; |
109 extern const char kPluginStartupDialog[]; | 105 extern const char kPluginStartupDialog[]; |
110 extern const char kPpapiBrokerProcess[]; | 106 extern const char kPpapiBrokerProcess[]; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 extern const char kScrollPixels[]; | 153 extern const char kScrollPixels[]; |
158 #endif | 154 #endif |
159 | 155 |
160 #if !defined(OFFICIAL_BUILD) | 156 #if !defined(OFFICIAL_BUILD) |
161 extern const char kRendererCheckFalseTest[]; | 157 extern const char kRendererCheckFalseTest[]; |
162 #endif | 158 #endif |
163 | 159 |
164 } // namespace switches | 160 } // namespace switches |
165 | 161 |
166 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 162 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |