| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 extern const char kWebWorkerShareProcesses[]; | 145 extern const char kWebWorkerShareProcesses[]; |
| 146 extern const char kWorkerProcess[]; | 146 extern const char kWorkerProcess[]; |
| 147 extern const char kZygoteCmdPrefix[]; | 147 extern const char kZygoteCmdPrefix[]; |
| 148 extern const char kZygoteProcess[]; | 148 extern const char kZygoteProcess[]; |
| 149 | 149 |
| 150 #if defined(OS_WIN) | 150 #if defined(OS_WIN) |
| 151 extern const char kAuditHandles[]; | 151 extern const char kAuditHandles[]; |
| 152 extern const char kAuditAllHandles[]; | 152 extern const char kAuditAllHandles[]; |
| 153 #endif | 153 #endif |
| 154 | 154 |
| 155 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 156 extern const char kScrollPixels[]; |
| 157 #endif |
| 158 |
| 155 #if !defined(OFFICIAL_BUILD) | 159 #if !defined(OFFICIAL_BUILD) |
| 156 extern const char kRendererCheckFalseTest[]; | 160 extern const char kRendererCheckFalseTest[]; |
| 157 #endif | 161 #endif |
| 158 | 162 |
| 159 } // namespace switches | 163 } // namespace switches |
| 160 | 164 |
| 161 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 165 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |