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

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

Issue 10879089: Turn track on by default (switch --enable-video-track flag to --disable-video-track) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable instead of enable Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; 371 const char kDisableThreadedCompositing[] = "disable-threaded-compositing";
372 372
373 // Enable use of experimental TCP sockets API for sending data in the 373 // Enable use of experimental TCP sockets API for sending data in the
374 // SYN packet. 374 // SYN packet.
375 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; 375 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen";
376 376
377 // Disables hardware acceleration of video decode, where available. 377 // Disables hardware acceleration of video decode, where available.
378 const char kDisableAcceleratedVideoDecode[] = 378 const char kDisableAcceleratedVideoDecode[] =
379 "disable-accelerated-video-decode"; 379 "disable-accelerated-video-decode";
380 380
381 // Enables support for video tracks. Current implementation is 381 // Enables support for video tracks. Current implementation is
scherkus (not reviewing) 2012/08/28 00:32:55 update comment are we still incomplete? :)
annacc 2012/08/28 04:08:12 Heh. Thanks
382 // incomplete and this flag is used for development and testing. 382 // incomplete and this flag is used for development and testing.
383 const char kEnableVideoTrack[] = "enable-video-track"; 383 const char kDisableVideoTrack[] = "disable-video-track";
384 384
385 // Enables the use of the viewport meta tag, which allows 385 // Enables the use of the viewport meta tag, which allows
386 // pages to control aspects of their own layout. This also turns on touch-screen 386 // pages to control aspects of their own layout. This also turns on touch-screen
387 // pinch gestures. 387 // pinch gestures.
388 const char kEnableViewport[] = "enable-viewport"; 388 const char kEnableViewport[] = "enable-viewport";
389 389
390 // Enables experimental features for the geolocation API. 390 // Enables experimental features for the geolocation API.
391 // Current features: 391 // Current features:
392 // - CoreLocation support for Mac OS X 10.6 392 // - CoreLocation support for Mac OS X 10.6
393 // - Gateway location for Linux and Windows 393 // - Gateway location for Linux and Windows
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 // Sets the width and height above which a composited layer will get tiled. 714 // Sets the width and height above which a composited layer will get tiled.
715 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 715 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
716 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 716 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
717 717
718 const char kEnableFixedPositionCreatesStackingContext[] 718 const char kEnableFixedPositionCreatesStackingContext[]
719 = "enable-fixed-position-creates-stacking-context"; 719 = "enable-fixed-position-creates-stacking-context";
720 const char kDisableFixedPositionCreatesStackingContext[] 720 const char kDisableFixedPositionCreatesStackingContext[]
721 = "disable-fixed-position-creates-stacking-context"; 721 = "disable-fixed-position-creates-stacking-context";
722 722
723 } // namespace switches 723 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698