Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: content/public/common/content_switches.h

Issue 177953004: Enable SurfaceTexture based zero-copy texture uploading on Android platform Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 extern const char kEnableWebRtcTcpServerSocket[]; 285 extern const char kEnableWebRtcTcpServerSocket[];
286 CONTENT_EXPORT extern const char kEnableWebRtcHWVp8Encoding[]; 286 CONTENT_EXPORT extern const char kEnableWebRtcHWVp8Encoding[];
287 #endif 287 #endif
288 288
289 #if defined(OS_ANDROID) 289 #if defined(OS_ANDROID)
290 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaFullscreen[]; 290 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaFullscreen[];
291 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[]; 291 CONTENT_EXPORT extern const char kDisableGestureRequirementForMediaPlayback[];
292 extern const char kDisableMediaHistoryLogging[]; 292 extern const char kDisableMediaHistoryLogging[];
293 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[]; 293 CONTENT_EXPORT extern const char kDisableOverscrollEdgeEffect[];
294 CONTENT_EXPORT extern const char kDisableWebRTC[]; 294 CONTENT_EXPORT extern const char kDisableWebRTC[];
295 CONTENT_EXPORT extern const char KEnableSurfaceTextureBuffer[];
reveman 2014/02/26 08:02:34 We shouldn't need this switch. If a platform has a
295 CONTENT_EXPORT extern const char kEnableSpeechRecognition[]; 296 CONTENT_EXPORT extern const char kEnableSpeechRecognition[];
296 CONTENT_EXPORT extern const char kHideScrollbars[]; 297 CONTENT_EXPORT extern const char kHideScrollbars[];
297 extern const char kNetworkCountryIso[]; 298 extern const char kNetworkCountryIso[];
298 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; 299 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[];
299 #endif 300 #endif
300 301
301 #if defined(OS_ANDROID) && defined(ARCH_CPU_X86) 302 #if defined(OS_ANDROID) && defined(ARCH_CPU_X86)
302 CONTENT_EXPORT extern const char kEnableWebAudio[]; 303 CONTENT_EXPORT extern const char kEnableWebAudio[];
303 #else 304 #else
304 CONTENT_EXPORT extern const char kDisableWebAudio[]; 305 CONTENT_EXPORT extern const char kDisableWebAudio[];
(...skipping 12 matching lines...) Expand all
317 #if defined(OS_POSIX) 318 #if defined(OS_POSIX)
318 extern const char kChildCleanExit[]; 319 extern const char kChildCleanExit[];
319 #endif 320 #endif
320 321
321 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 322 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
322 // alphabetical order, or in one of the ifdefs (also in order in each section). 323 // alphabetical order, or in one of the ifdefs (also in order in each section).
323 324
324 } // namespace switches 325 } // namespace switches
325 326
326 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 327 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698