Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 CONTENT_EXPORT extern const char kEnableLogging[]; | 131 CONTENT_EXPORT extern const char kEnableLogging[]; |
| 132 #if defined(ANDROID) && !defined(GOOGLE_TV) | 132 #if defined(ANDROID) && !defined(GOOGLE_TV) |
| 133 CONTENT_EXPORT extern const char kEnableWebKitMediaSource[]; | 133 CONTENT_EXPORT extern const char kEnableWebKitMediaSource[]; |
| 134 #else | 134 #else |
| 135 extern const char kDisableWebKitMediaSource[]; | 135 extern const char kDisableWebKitMediaSource[]; |
| 136 #endif | 136 #endif |
| 137 extern const char kEnableEncryptedMedia[]; | 137 extern const char kEnableEncryptedMedia[]; |
| 138 extern const char kDisableLegacyEncryptedMedia[]; | 138 extern const char kDisableLegacyEncryptedMedia[]; |
| 139 CONTENT_EXPORT extern const char kUseFakeDeviceForMediaStream[]; | 139 CONTENT_EXPORT extern const char kUseFakeDeviceForMediaStream[]; |
| 140 CONTENT_EXPORT extern const char kUseFakeUIForMediaStream[]; | 140 CONTENT_EXPORT extern const char kUseFakeUIForMediaStream[]; |
| 141 CONTENT_EXPORT extern const char kEnableNewMediaInternals[]; | |
|
scherkus (not reviewing)
2013/07/19 01:58:49
I believe you don't need CONTENT_EXPORT on this sw
Ty Overby
2013/07/19 17:48:00
You were right.
Done.
| |
| 141 extern const char kEnableMonitorProfile[]; | 142 extern const char kEnableMonitorProfile[]; |
| 142 extern const char kEnableUserMediaScreenCapturing[]; | 143 extern const char kEnableUserMediaScreenCapturing[]; |
| 143 extern const char kEnablePinch[]; | 144 extern const char kEnablePinch[]; |
| 144 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; | 145 CONTENT_EXPORT extern const char kEnableOfflineCacheAccess[]; |
| 145 extern const char kDisablePinch[]; | 146 extern const char kDisablePinch[]; |
| 146 extern const char kEnablePreparsedJsCaching[]; | 147 extern const char kEnablePreparsedJsCaching[]; |
| 147 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; | 148 CONTENT_EXPORT extern const char kEnablePrivilegedWebGLExtensions[]; |
| 148 extern const char kEnablePruneGpuCommandBuffers[]; | 149 extern const char kEnablePruneGpuCommandBuffers[]; |
| 149 extern const char kEnableSSLCachedInfo[]; | 150 extern const char kEnableSSLCachedInfo[]; |
| 150 extern const char kEnableSandboxLogging[]; | 151 extern const char kEnableSandboxLogging[]; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 281 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 282 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 282 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; | 283 CONTENT_EXPORT extern const char kEnableOverscrollNotifications[]; |
| 283 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; | 284 CONTENT_EXPORT extern const char kEnableWebGLDraftExtensions[]; |
| 284 | 285 |
| 285 CONTENT_EXPORT extern const char kDisableAcceleratedFixedRootBackground[]; | 286 CONTENT_EXPORT extern const char kDisableAcceleratedFixedRootBackground[]; |
| 286 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; | 287 CONTENT_EXPORT extern const char kEnableAcceleratedFixedRootBackground[]; |
| 287 | 288 |
| 288 } // namespace switches | 289 } // namespace switches |
| 289 | 290 |
| 290 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 291 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |