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

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

Issue 19722011: Added a placeholder new media-internals page under a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 // Disables prefixed Encrypted Media API (e.g. webkitGenerateKeyRequest()). 400 // Disables prefixed Encrypted Media API (e.g. webkitGenerateKeyRequest()).
401 const char kDisableLegacyEncryptedMedia[] = "disable-legacy-encrypted-media"; 401 const char kDisableLegacyEncryptedMedia[] = "disable-legacy-encrypted-media";
402 402
403 // Use fake device for MediaStream to replace actual camera and microphone. 403 // Use fake device for MediaStream to replace actual camera and microphone.
404 const char kUseFakeDeviceForMediaStream[] = "use-fake-device-for-media-stream"; 404 const char kUseFakeDeviceForMediaStream[] = "use-fake-device-for-media-stream";
405 405
406 // Bypass the media stream infobar by selecting the default device for media 406 // Bypass the media stream infobar by selecting the default device for media
407 // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream. 407 // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream.
408 const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream"; 408 const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream";
409 409
410 // Enables the new chrome://media-internals page.
411 // http://crbug.com/260005
412 const char kEnableNewMediaInternals[] = "enable-new-media-internals";
Charlie Reis 2013/07/19 21:35:51 This still isn't alphabetized. It should be in th
413
410 // On Windows, converts the page to the currently-installed monitor profile. 414 // On Windows, converts the page to the currently-installed monitor profile.
411 // This does NOT enable color management for images. The source is still 415 // This does NOT enable color management for images. The source is still
412 // assumed to be sRGB. 416 // assumed to be sRGB.
413 const char kEnableMonitorProfile[] = "enable-monitor-profile"; 417 const char kEnableMonitorProfile[] = "enable-monitor-profile";
414 418
415 // Enables compositor-accelerated touch-screen pinch gestures. 419 // Enables compositor-accelerated touch-screen pinch gestures.
416 const char kEnablePinch[] = "enable-pinch"; 420 const char kEnablePinch[] = "enable-pinch";
417 const char kDisablePinch[] = "disable-pinch"; 421 const char kDisablePinch[] = "disable-pinch";
418 422
419 // Enables use of cache if offline, even if it's stale 423 // Enables use of cache if offline, even if it's stale
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; 897 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
894 898
895 // Enables/disables accelerated compositing for backgrounds of root layers with 899 // Enables/disables accelerated compositing for backgrounds of root layers with
896 // background-attachment: fixed. Requires kForceCompositingMode. 900 // background-attachment: fixed. Requires kForceCompositingMode.
897 const char kDisableAcceleratedFixedRootBackground[] = 901 const char kDisableAcceleratedFixedRootBackground[] =
898 "disable-accelerated-fixed-root-background"; 902 "disable-accelerated-fixed-root-background";
899 const char kEnableAcceleratedFixedRootBackground[] = 903 const char kEnableAcceleratedFixedRootBackground[] =
900 "enable-accelerated-fixed-root-background"; 904 "enable-accelerated-fixed-root-background";
901 905
902 } // namespace switches 906 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698