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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 extern const char kEnableSandboxLogging[]; | 55 extern const char kEnableSandboxLogging[]; |
56 extern const char kEnableSeccompSandbox[]; | 56 extern const char kEnableSeccompSandbox[]; |
57 extern const char kEnableStatsTable[]; | 57 extern const char kEnableStatsTable[]; |
58 extern const char kEnableVideoFullscreen[]; | 58 extern const char kEnableVideoFullscreen[]; |
59 extern const char kEnableVideoLogging[]; | 59 extern const char kEnableVideoLogging[]; |
60 extern const char kEnableWebAudio[]; | 60 extern const char kEnableWebAudio[]; |
61 extern const char kExperimentalLocationFeatures[]; | 61 extern const char kExperimentalLocationFeatures[]; |
62 // TODO(jam): this doesn't belong in content. | 62 // TODO(jam): this doesn't belong in content. |
63 extern const char kExtensionProcess[]; | 63 extern const char kExtensionProcess[]; |
64 extern const char kExtraPluginDir[]; | 64 extern const char kExtraPluginDir[]; |
| 65 extern const char kForceFieldTestNameAndValue[]; |
65 extern const char kGpuLauncher[]; | 66 extern const char kGpuLauncher[]; |
66 extern const char kGpuProcess[]; | 67 extern const char kGpuProcess[]; |
67 extern const char kGpuStartupDialog[]; | 68 extern const char kGpuStartupDialog[]; |
68 extern const char kInProcessGPU[]; | 69 extern const char kInProcessGPU[]; |
69 extern const char kInProcessPlugins[]; | 70 extern const char kInProcessPlugins[]; |
70 extern const char kInProcessWebGL[]; | 71 extern const char kInProcessWebGL[]; |
71 extern const char kJavaScriptFlags[]; | 72 extern const char kJavaScriptFlags[]; |
72 extern const char kLevelDBIndexedDatabase[]; | 73 extern const char kLevelDBIndexedDatabase[]; |
73 extern const char kLoadPlugin[]; | 74 extern const char kLoadPlugin[]; |
74 extern const char kLoggingLevel[]; | 75 extern const char kLoggingLevel[]; |
(...skipping 15 matching lines...) Expand all Loading... |
90 extern const char kPpapiPluginLauncher[]; | 91 extern const char kPpapiPluginLauncher[]; |
91 extern const char kPpapiPluginProcess[]; | 92 extern const char kPpapiPluginProcess[]; |
92 extern const char kPpapiStartupDialog[]; | 93 extern const char kPpapiStartupDialog[]; |
93 extern const char kProcessPerSite[]; | 94 extern const char kProcessPerSite[]; |
94 extern const char kProcessPerTab[]; | 95 extern const char kProcessPerTab[]; |
95 extern const char kProcessType[]; | 96 extern const char kProcessType[]; |
96 // TODO(jam): this doesn't belong in content. | 97 // TODO(jam): this doesn't belong in content. |
97 extern const char kProfileImportProcess[]; | 98 extern const char kProfileImportProcess[]; |
98 extern const char kRecordMode[]; | 99 extern const char kRecordMode[]; |
99 extern const char kRegisterPepperPlugins[]; | 100 extern const char kRegisterPepperPlugins[]; |
| 101 extern const char kRendererAssertTest[]; |
100 extern const char kRendererCmdPrefix[]; | 102 extern const char kRendererCmdPrefix[]; |
101 extern const char kRendererCrashTest[]; | 103 extern const char kRendererCrashTest[]; |
102 extern const char kRendererProcess[]; | 104 extern const char kRendererProcess[]; |
103 extern const char kRendererStartupDialog[]; | 105 extern const char kRendererStartupDialog[]; |
104 extern const char kSafePlugins[]; | 106 extern const char kSafePlugins[]; |
105 // TODO(jam): this doesn't belong in content. | 107 // TODO(jam): this doesn't belong in content. |
106 extern const char kServiceProcess[]; | 108 extern const char kServiceProcess[]; |
107 extern const char kShowPaintRects[]; | 109 extern const char kShowPaintRects[]; |
108 extern const char kSimpleDataSource[]; | 110 extern const char kSimpleDataSource[]; |
109 extern const char kSingleProcess[]; | 111 extern const char kSingleProcess[]; |
110 extern const char kTestSandbox[]; | 112 extern const char kTestSandbox[]; |
111 extern const char kUnlimitedQuotaForFiles[]; | 113 extern const char kUnlimitedQuotaForFiles[]; |
112 extern const char kUnlimitedQuotaForIndexedDB[]; | 114 extern const char kUnlimitedQuotaForIndexedDB[]; |
113 extern const char kUserAgent[]; | 115 extern const char kUserAgent[]; |
114 extern const char kUtilityProcess[]; | 116 extern const char kUtilityProcess[]; |
115 extern const char kUtilityProcessAllowedDir[]; | 117 extern const char kUtilityProcessAllowedDir[]; |
116 extern const char kWaitForDebuggerChildren[]; | 118 extern const char kWaitForDebuggerChildren[]; |
117 extern const char kWebCoreLogChannels[]; | 119 extern const char kWebCoreLogChannels[]; |
118 extern const char kWebWorkerProcessPerCore[]; | 120 extern const char kWebWorkerProcessPerCore[]; |
119 extern const char kWebWorkerShareProcesses[]; | 121 extern const char kWebWorkerShareProcesses[]; |
120 extern const char kWorkerProcess[]; | 122 extern const char kWorkerProcess[]; |
121 extern const char kZygoteCmdPrefix[]; | 123 extern const char kZygoteCmdPrefix[]; |
122 extern const char kZygoteProcess[]; | 124 extern const char kZygoteProcess[]; |
123 | 125 |
| 126 #if !defined(OFFICIAL_BUILD) |
| 127 extern const char kRendererCheckFalseTest[]; |
| 128 #endif |
| 129 |
124 } // namespace switches | 130 } // namespace switches |
125 | 131 |
126 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 132 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |