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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 155 |
156 #if defined(OS_WIN) | 156 #if defined(OS_WIN) |
157 extern const char kAuditHandles[]; | 157 extern const char kAuditHandles[]; |
158 extern const char kAuditAllHandles[]; | 158 extern const char kAuditAllHandles[]; |
159 #endif | 159 #endif |
160 | 160 |
161 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 161 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
162 extern const char kScrollPixels[]; | 162 extern const char kScrollPixels[]; |
163 #endif | 163 #endif |
164 | 164 |
| 165 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 166 extern const char kUseSystemSSL[]; |
| 167 #endif |
| 168 |
165 #if !defined(OFFICIAL_BUILD) | 169 #if !defined(OFFICIAL_BUILD) |
166 extern const char kRendererCheckFalseTest[]; | 170 extern const char kRendererCheckFalseTest[]; |
167 #endif | 171 #endif |
168 | 172 |
169 } // namespace switches | 173 } // namespace switches |
170 | 174 |
171 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ | 175 #endif // CONTENT_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |