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

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

Issue 10918052: create a separate WebMediaPlayer for URL derived from media stream (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review 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
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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 // Enables the GPU benchmarking extension 300 // Enables the GPU benchmarking extension
301 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; 301 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking";
302 302
303 // Force logging to be enabled. Logging is disabled by default in release 303 // Force logging to be enabled. Logging is disabled by default in release
304 // builds. 304 // builds.
305 const char kEnableLogging[] = "enable-logging"; 305 const char kEnableLogging[] = "enable-logging";
306 306
307 // Enables Media Source API on <audio>/<video> elements. 307 // Enables Media Source API on <audio>/<video> elements.
308 const char kEnableMediaSource[] = "enable-media-source"; 308 const char kEnableMediaSource[] = "enable-media-source";
309 309
310 // Enables using different WebMediaPlayer for <audio>/<video> based on URL.
311 const char kEnableMediaPlayerSwitch[] = "enable-media-player-switch";
scherkus (not reviewing) 2012/09/20 19:27:00 This isn't quite accurate... this only affects Med
wjia(left Chromium) 2012/09/21 19:47:27 Done.
312
310 // On Windows, converts the page to the currently-installed monitor profile. 313 // On Windows, converts the page to the currently-installed monitor profile.
311 // This does NOT enable color management for images. The source is still 314 // This does NOT enable color management for images. The source is still
312 // assumed to be sRGB. 315 // assumed to be sRGB.
313 const char kEnableMonitorProfile[] = "enable-monitor-profile"; 316 const char kEnableMonitorProfile[] = "enable-monitor-profile";
314 317
315 // Enables partial swaps in the WK compositor on platforms that support it. 318 // Enables partial swaps in the WK compositor on platforms that support it.
316 const char kEnablePartialSwap[] = "enable-partial-swap"; 319 const char kEnablePartialSwap[] = "enable-partial-swap";
317 320
318 // Enables UI releasing handle to front surface for background tabs on platforms 321 // Enables UI releasing handle to front surface for background tabs on platforms
319 // that support it. 322 // that support it.
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 // Sets the width and height above which a composited layer will get tiled. 718 // Sets the width and height above which a composited layer will get tiled.
716 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 719 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
717 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 720 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
718 721
719 const char kEnableFixedPositionCreatesStackingContext[] 722 const char kEnableFixedPositionCreatesStackingContext[]
720 = "enable-fixed-position-creates-stacking-context"; 723 = "enable-fixed-position-creates-stacking-context";
721 const char kDisableFixedPositionCreatesStackingContext[] 724 const char kDisableFixedPositionCreatesStackingContext[]
722 = "disable-fixed-position-creates-stacking-context"; 725 = "disable-fixed-position-creates-stacking-context";
723 726
724 } // namespace switches 727 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698