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_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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 CONTENT_EXPORT extern const char kPpapiFlashVersion[]; | 129 CONTENT_EXPORT extern const char kPpapiFlashVersion[]; |
130 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; | 130 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; |
131 extern const char kPpapiPluginLauncher[]; | 131 extern const char kPpapiPluginLauncher[]; |
132 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 132 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
133 extern const char kPpapiStartupDialog[]; | 133 extern const char kPpapiStartupDialog[]; |
134 extern const char kProcessPerSite[]; | 134 extern const char kProcessPerSite[]; |
135 CONTENT_EXPORT extern const char kProcessPerTab[]; | 135 CONTENT_EXPORT extern const char kProcessPerTab[]; |
136 CONTENT_EXPORT extern const char kProcessType[]; | 136 CONTENT_EXPORT extern const char kProcessType[]; |
137 CONTENT_EXPORT extern const char kRecordMode[]; | 137 CONTENT_EXPORT extern const char kRecordMode[]; |
138 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 138 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
139 CONTENT_EXPORT extern const char kRemoteShellPort[]; | |
140 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 139 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
141 extern const char kRendererCmdPrefix[]; | 140 extern const char kRendererCmdPrefix[]; |
142 CONTENT_EXPORT extern const char kRendererCrashTest[]; | 141 CONTENT_EXPORT extern const char kRendererCrashTest[]; |
143 CONTENT_EXPORT extern const char kRendererProcess[]; | 142 CONTENT_EXPORT extern const char kRendererProcess[]; |
144 extern const char kRendererStartupDialog[]; | 143 extern const char kRendererStartupDialog[]; |
145 // TODO(jam): this doesn't belong in content. | 144 // TODO(jam): this doesn't belong in content. |
146 CONTENT_EXPORT extern const char kServiceProcess[]; | 145 CONTENT_EXPORT extern const char kServiceProcess[]; |
147 extern const char kShowPaintRects[]; | 146 extern const char kShowPaintRects[]; |
148 extern const char kSimpleDataSource[]; | 147 extern const char kSimpleDataSource[]; |
149 CONTENT_EXPORT extern const char kSingleProcess[]; | 148 CONTENT_EXPORT extern const char kSingleProcess[]; |
(...skipping 25 matching lines...) Expand all Loading... |
175 extern const char kUseSystemSSL[]; | 174 extern const char kUseSystemSSL[]; |
176 #endif | 175 #endif |
177 | 176 |
178 #if !defined(OFFICIAL_BUILD) | 177 #if !defined(OFFICIAL_BUILD) |
179 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 178 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
180 #endif | 179 #endif |
181 | 180 |
182 } // namespace switches | 181 } // namespace switches |
183 | 182 |
184 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 183 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |