| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 extern const char kEnableVisualWordMovement[]; | 168 extern const char kEnableVisualWordMovement[]; |
| 169 | 169 |
| 170 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 170 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 171 extern const char kScrollPixels[]; | 171 extern const char kScrollPixels[]; |
| 172 #endif | 172 #endif |
| 173 | 173 |
| 174 #if defined(OS_MACOSX) || defined(OS_WIN) | 174 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 175 extern const char kUseSystemSSL[]; | 175 extern const char kUseSystemSSL[]; |
| 176 #endif | 176 #endif |
| 177 | 177 |
| 178 #if defined(OS_MACOSX) |
| 179 // TODO(kbr): remove this and the associated old code path: |
| 180 // http://crbug.com/105344 |
| 181 // Note: string is replicated in |
| 182 // src/webkit/plugins/npapi/plugin_host.cc. |
| 183 extern const char kDisableCompositedCoreAnimationPlugins[]; |
| 184 #endif |
| 185 |
| 178 #if !defined(OFFICIAL_BUILD) | 186 #if !defined(OFFICIAL_BUILD) |
| 179 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; | 187 CONTENT_EXPORT extern const char kRendererCheckFalseTest[]; |
| 180 #endif | 188 #endif |
| 181 | 189 |
| 182 } // namespace switches | 190 } // namespace switches |
| 183 | 191 |
| 184 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 192 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |