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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 extern const char kRendererProcess[]; | 128 extern const char kRendererProcess[]; |
129 extern const char kRendererStartupDialog[]; | 129 extern const char kRendererStartupDialog[]; |
130 // TODO(jam): this doesn't belong in content. | 130 // TODO(jam): this doesn't belong in content. |
131 extern const char kServiceProcess[]; | 131 extern const char kServiceProcess[]; |
132 extern const char kShowPaintRects[]; | 132 extern const char kShowPaintRects[]; |
133 extern const char kSimpleDataSource[]; | 133 extern const char kSimpleDataSource[]; |
134 extern const char kSingleProcess[]; | 134 extern const char kSingleProcess[]; |
135 extern const char kSQLiteIndexedDatabase[]; | 135 extern const char kSQLiteIndexedDatabase[]; |
136 extern const char kTestSandbox[]; | 136 extern const char kTestSandbox[]; |
137 extern const char kUnlimitedQuotaForFiles[]; | 137 extern const char kUnlimitedQuotaForFiles[]; |
138 extern const char kUnlimitedQuotaForIndexedDB[]; | |
139 extern const char kUserAgent[]; | 138 extern const char kUserAgent[]; |
140 extern const char kUtilityCmdPrefix[]; | 139 extern const char kUtilityCmdPrefix[]; |
141 extern const char kUtilityProcess[]; | 140 extern const char kUtilityProcess[]; |
142 extern const char kUtilityProcessAllowedDir[]; | 141 extern const char kUtilityProcessAllowedDir[]; |
143 extern const char kWaitForDebuggerChildren[]; | 142 extern const char kWaitForDebuggerChildren[]; |
144 extern const char kWebCoreLogChannels[]; | 143 extern const char kWebCoreLogChannels[]; |
145 extern const char kWebWorkerProcessPerCore[]; | 144 extern const char kWebWorkerProcessPerCore[]; |
146 extern const char kWebWorkerShareProcesses[]; | 145 extern const char kWebWorkerShareProcesses[]; |
147 extern const char kWorkerProcess[]; | 146 extern const char kWorkerProcess[]; |
148 extern const char kZygoteCmdPrefix[]; | 147 extern const char kZygoteCmdPrefix[]; |
149 extern const char kZygoteProcess[]; | 148 extern const char kZygoteProcess[]; |
150 | 149 |
151 #if defined(OS_WIN) | 150 #if defined(OS_WIN) |
152 extern const char kAuditHandles[]; | 151 extern const char kAuditHandles[]; |
153 extern const char kAuditAllHandles[]; | 152 extern const char kAuditAllHandles[]; |
154 #endif | 153 #endif |
155 | 154 |
156 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 155 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
157 extern const char kScrollPixels[]; | 156 extern const char kScrollPixels[]; |
158 #endif | 157 #endif |
159 | 158 |
160 #if !defined(OFFICIAL_BUILD) | 159 #if !defined(OFFICIAL_BUILD) |
161 extern const char kRendererCheckFalseTest[]; | 160 extern const char kRendererCheckFalseTest[]; |
162 #endif | 161 #endif |
163 | 162 |
164 } // namespace switches | 163 } // namespace switches |
165 | 164 |
166 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 165 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |