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