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

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

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed one cardboard reference Created 5 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/BUILD.gn » ('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 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 470
471 // Enable the Vtune profiler support. 471 // Enable the Vtune profiler support.
472 const char kEnableVtune[] = "enable-vtune-support"; 472 const char kEnableVtune[] = "enable-vtune-support";
473 473
474 // Enables WebGL extensions not yet approved by the community. 474 // Enables WebGL extensions not yet approved by the community.
475 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; 475 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
476 476
477 // Enables WebGL rendering into a scanout buffer for overlay support. 477 // Enables WebGL rendering into a scanout buffer for overlay support.
478 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; 478 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium";
479 479
480 // Enables interaction with virtual reality devices.
481 const char kEnableWebVR[] = "enable-webvr";
482
480 // Enable rasterizer that writes directly to GPU memory associated with tiles. 483 // Enable rasterizer that writes directly to GPU memory associated with tiles.
481 const char kEnableZeroCopy[] = "enable-zero-copy"; 484 const char kEnableZeroCopy[] = "enable-zero-copy";
482 485
483 // Explicitly allows additional ports using a comma-separated list of port 486 // Explicitly allows additional ports using a comma-separated list of port
484 // numbers. 487 // numbers.
485 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; 488 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports";
486 489
487 // Load NPAPI plugins from the specified directory. 490 // Load NPAPI plugins from the specified directory.
488 const char kExtraPluginDir[] = "extra-plugin-dir"; 491 const char kExtraPluginDir[] = "extra-plugin-dir";
489 492
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 // Windows Vista and later. 997 // Windows Vista and later.
995 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 998 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
996 #endif 999 #endif
997 1000
998 // Enables the use of NPAPI plugins. 1001 // Enables the use of NPAPI plugins.
999 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; 1002 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing";
1000 1003
1001 // Don't dump stuff here, follow the same order as the header. 1004 // Don't dump stuff here, follow the same order as the header.
1002 1005
1003 } // namespace switches 1006 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698