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

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

Issue 10379003: enable media stream by default. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove IDS_FLAGS_MEDIA_STREAM_DESCRIPTION in grd file Created 8 years, 7 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 257
258 // Force logging to be enabled. Logging is disabled by default in release 258 // Force logging to be enabled. Logging is disabled by default in release
259 // builds. 259 // builds.
260 const char kEnableLogging[] = "enable-logging"; 260 const char kEnableLogging[] = "enable-logging";
261 261
262 // Enables Media Source API on <audio>/<video> elements. 262 // Enables Media Source API on <audio>/<video> elements.
263 const char kEnableMediaSource[] = "enable-media-source"; 263 const char kEnableMediaSource[] = "enable-media-source";
264 264
265 // Enable media stream in WebKit. 265 // Enable media stream in WebKit.
266 // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#mediastr eam 266 // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#mediastr eam
267 const char kEnableMediaStream[] = "enable-media-stream";
268 const char kEnablePeerConnection[] = "enable-peer-connection"; 267 const char kEnablePeerConnection[] = "enable-peer-connection";
269 268
270 // On Windows, converts the page to the currently-installed monitor profile. 269 // On Windows, converts the page to the currently-installed monitor profile.
271 // This does NOT enable color management for images. The source is still 270 // This does NOT enable color management for images. The source is still
272 // assumed to be sRGB. 271 // assumed to be sRGB.
273 const char kEnableMonitorProfile[] = "enable-monitor-profile"; 272 const char kEnableMonitorProfile[] = "enable-monitor-profile";
274 273
275 // Enables TLS domain bound certificate extension. 274 // Enables TLS domain bound certificate extension.
276 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; 275 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs";
277 276
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; 620 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down";
622 621
623 // Maximum time between mousedown and mouseup to be considered a tap. 622 // Maximum time between mousedown and mouseup to be considered a tap.
624 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; 623 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap";
625 624
626 // Forces usage of the test compositor. Needed to run ui tests on bots. 625 // Forces usage of the test compositor. Needed to run ui tests on bots.
627 extern const char kTestCompositor[] = "test-compositor"; 626 extern const char kTestCompositor[] = "test-compositor";
628 #endif 627 #endif
629 628
630 } // namespace switches 629 } // 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