| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 CONTENT_EXPORT extern const char kGpuProcess[]; | 95 CONTENT_EXPORT extern const char kGpuProcess[]; |
| 96 extern const char kGpuStartupDialog[]; | 96 extern const char kGpuStartupDialog[]; |
| 97 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; | 97 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; |
| 98 extern const char kInProcessGPU[]; | 98 extern const char kInProcessGPU[]; |
| 99 extern const char kInProcessPlugins[]; | 99 extern const char kInProcessPlugins[]; |
| 100 CONTENT_EXPORT extern const char kInProcessWebGL[]; | 100 CONTENT_EXPORT extern const char kInProcessWebGL[]; |
| 101 extern const char kJavaScriptFlags[]; | 101 extern const char kJavaScriptFlags[]; |
| 102 extern const char kLoadPlugin[]; | 102 extern const char kLoadPlugin[]; |
| 103 CONTENT_EXPORT extern const char kLoggingLevel[]; | 103 CONTENT_EXPORT extern const char kLoggingLevel[]; |
| 104 extern const char kLogPluginMessages[]; | 104 extern const char kLogPluginMessages[]; |
| 105 extern const char kLowLatencyAudio[]; | 105 extern const char kHighLatencyAudio[]; |
| 106 // TODO(jam): this doesn't belong in content. | 106 // TODO(jam): this doesn't belong in content. |
| 107 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; | 107 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; |
| 108 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; | 108 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; |
| 109 // TODO(bradchen): remove kNaClLinuxHelper switch. | 109 // TODO(bradchen): remove kNaClLinuxHelper switch. |
| 110 // This switch enables the experimental lightweight nacl_helper for Linux. | 110 // This switch enables the experimental lightweight nacl_helper for Linux. |
| 111 // It will be going away soon, when the helper is enabled permanently. | 111 // It will be going away soon, when the helper is enabled permanently. |
| 112 extern const char kNaClLinuxHelper[]; | 112 extern const char kNaClLinuxHelper[]; |
| 113 CONTENT_EXPORT extern const char kNoDisplayingInsecureContent[]; | 113 CONTENT_EXPORT extern const char kNoDisplayingInsecureContent[]; |
| 114 extern const char kNoJsRandomness[]; | 114 extern const char kNoJsRandomness[]; |
| 115 CONTENT_EXPORT extern const char kNoReferrers[]; | 115 CONTENT_EXPORT extern const char kNoReferrers[]; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 extern const char kUseSystemSSL[]; | 168 extern const char kUseSystemSSL[]; |
| 169 #endif | 169 #endif |
| 170 | 170 |
| 171 #if !defined(OFFICIAL_BUILD) | 171 #if !defined(OFFICIAL_BUILD) |
| 172 extern const char kRendererCheckFalseTest[]; | 172 extern const char kRendererCheckFalseTest[]; |
| 173 #endif | 173 #endif |
| 174 | 174 |
| 175 } // namespace switches | 175 } // namespace switches |
| 176 | 176 |
| 177 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 177 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |