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

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

Issue 16320005: Define EncodedVideoSource and RtcCapturedEncodingVideoCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to 207015; addressed Ami's most recent comments. Created 7 years, 6 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 311
312 // Enables delegated renderer. 312 // Enables delegated renderer.
313 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; 313 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer";
314 314
315 // Enables device motion events. 315 // Enables device motion events.
316 const char kEnableDeviceMotion[] = "enable-device-motion"; 316 const char kEnableDeviceMotion[] = "enable-device-motion";
317 317
318 // Enables restarting interrupted downloads. 318 // Enables restarting interrupted downloads.
319 const char kEnableDownloadResumption[] = "enable-download-resumption"; 319 const char kEnableDownloadResumption[] = "enable-download-resumption";
320 320
321 #if defined(OS_CHROMEOS)
322 // Enables hardware-encoded screen capture.
323 const char kEnableEncodedScreenCapture[] = "enable-encoded-screen-capture";
324 #endif
325
321 // Enables WebKit features that are in development. 326 // Enables WebKit features that are in development.
322 const char kEnableExperimentalWebKitFeatures[] = 327 const char kEnableExperimentalWebKitFeatures[] =
323 "enable-experimental-webkit-features"; 328 "enable-experimental-webkit-features";
324 329
325 // Enables the CSS multicol implementation that uses the regions implementation. 330 // Enables the CSS multicol implementation that uses the regions implementation.
326 const char kEnableRegionBasedColumns[] = 331 const char kEnableRegionBasedColumns[] =
327 "enable-region-based-columns"; 332 "enable-region-based-columns";
328 333
329 // Disables the threaded HTML parser in WebKit 334 // Disables the threaded HTML parser in WebKit
330 const char kDisableThreadedHTMLParser[] = "disable-threaded-html-parser"; 335 const char kDisableThreadedHTMLParser[] = "disable-threaded-html-parser";
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 // Forward overscroll event data from the renderer to the browser. 859 // Forward overscroll event data from the renderer to the browser.
855 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; 860 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications";
856 861
857 // Enables 'image/webp' accept header for image requests. 862 // Enables 'image/webp' accept header for image requests.
858 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; 863 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header";
859 864
860 // Enables WebGL extensions not yet approved by the community. 865 // Enables WebGL extensions not yet approved by the community.
861 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; 866 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
862 867
863 } // namespace switches 868 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698