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

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: Updated Cardboard lib to v0.5.3 Created 5 years, 8 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
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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 502
503 // Enable the Vtune profiler support. 503 // Enable the Vtune profiler support.
504 const char kEnableVtune[] = "enable-vtune-support"; 504 const char kEnableVtune[] = "enable-vtune-support";
505 505
506 // Enables WebGL extensions not yet approved by the community. 506 // Enables WebGL extensions not yet approved by the community.
507 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; 507 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
508 508
509 // Enables WebGL rendering into a scanout buffer for overlay support. 509 // Enables WebGL rendering into a scanout buffer for overlay support.
510 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; 510 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium";
511 511
512 // Enables interaction with virtual reality devices.
513 const char kEnableWebVR[] = "enable-webvr";
514
512 // Enable rasterizer that writes directly to GPU memory associated with tiles. 515 // Enable rasterizer that writes directly to GPU memory associated with tiles.
513 const char kEnableZeroCopy[] = "enable-zero-copy"; 516 const char kEnableZeroCopy[] = "enable-zero-copy";
514 517
515 // Explicitly allows additional ports using a comma-separated list of port 518 // Explicitly allows additional ports using a comma-separated list of port
516 // numbers. 519 // numbers.
517 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; 520 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports";
518 521
519 // Load NPAPI plugins from the specified directory. 522 // Load NPAPI plugins from the specified directory.
520 const char kExtraPluginDir[] = "extra-plugin-dir"; 523 const char kExtraPluginDir[] = "extra-plugin-dir";
521 524
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 // Windows Vista and later. 999 // Windows Vista and later.
997 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1000 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
998 #endif 1001 #endif
999 1002
1000 // Enables the use of NPAPI plugins. 1003 // Enables the use of NPAPI plugins.
1001 const char kEnableNpapi[] = "enable-npapi"; 1004 const char kEnableNpapi[] = "enable-npapi";
1002 1005
1003 // Don't dump stuff here, follow the same order as the header. 1006 // Don't dump stuff here, follow the same order as the header.
1004 1007
1005 } // namespace switches 1008 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698