| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 CONTENT_EXPORT extern const char kUtilityProcess[]; | 151 CONTENT_EXPORT extern const char kUtilityProcess[]; |
| 152 extern const char kUtilityProcessAllowedDir[]; | 152 extern const char kUtilityProcessAllowedDir[]; |
| 153 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; | 153 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; |
| 154 extern const char kWebCoreLogChannels[]; | 154 extern const char kWebCoreLogChannels[]; |
| 155 extern const char kWebWorkerProcessPerCore[]; | 155 extern const char kWebWorkerProcessPerCore[]; |
| 156 extern const char kWebWorkerShareProcesses[]; | 156 extern const char kWebWorkerShareProcesses[]; |
| 157 CONTENT_EXPORT extern const char kWorkerProcess[]; | 157 CONTENT_EXPORT extern const char kWorkerProcess[]; |
| 158 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 158 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
| 159 CONTENT_EXPORT extern const char kZygoteProcess[]; | 159 CONTENT_EXPORT extern const char kZygoteProcess[]; |
| 160 | 160 |
| 161 extern const char kEnableVisualWordMovement[]; |
| 162 |
| 161 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 163 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 162 extern const char kScrollPixels[]; | 164 extern const char kScrollPixels[]; |
| 163 #endif | 165 #endif |
| 164 | 166 |
| 165 #if defined(OS_MACOSX) || defined(OS_WIN) | 167 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 166 extern const char kUseSystemSSL[]; | 168 extern const char kUseSystemSSL[]; |
| 167 #endif | 169 #endif |
| 168 | 170 |
| 169 #if !defined(OFFICIAL_BUILD) | 171 #if !defined(OFFICIAL_BUILD) |
| 170 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 172 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
| 171 #endif | 173 #endif |
| 172 | 174 |
| 173 } // namespace switches | 175 } // namespace switches |
| 174 | 176 |
| 175 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 177 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |