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

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

Issue 1011833002: Web MIDI: make Chrome a music platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 // 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 485
486 // Enable the Vtune profiler support. 486 // Enable the Vtune profiler support.
487 const char kEnableVtune[] = "enable-vtune-support"; 487 const char kEnableVtune[] = "enable-vtune-support";
488 488
489 // Enables WebGL extensions not yet approved by the community. 489 // Enables WebGL extensions not yet approved by the community.
490 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; 490 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
491 491
492 // Enables WebGL rendering into a scanout buffer for overlay support. 492 // Enables WebGL rendering into a scanout buffer for overlay support.
493 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; 493 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium";
494 494
495 // Enables Web MIDI API.
496 const char kEnableWebMIDI[] = "enable-web-midi";
497
498 // Enable rasterizer that writes directly to GPU memory associated with tiles. 495 // Enable rasterizer that writes directly to GPU memory associated with tiles.
499 const char kEnableZeroCopy[] = "enable-zero-copy"; 496 const char kEnableZeroCopy[] = "enable-zero-copy";
500 497
501 // Load NPAPI plugins from the specified directory. 498 // Load NPAPI plugins from the specified directory.
502 const char kExtraPluginDir[] = "extra-plugin-dir"; 499 const char kExtraPluginDir[] = "extra-plugin-dir";
503 500
504 // This option can be used to force field trials when testing changes locally. 501 // This option can be used to force field trials when testing changes locally.
505 // The argument is a list of name and value pairs, separated by slashes. If a 502 // The argument is a list of name and value pairs, separated by slashes. If a
506 // trial name is prefixed with an asterisk, that trial will start activated. 503 // trial name is prefixed with an asterisk, that trial will start activated.
507 // For example, the following argument defines two trials, with the second one 504 // For example, the following argument defines two trials, with the second one
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 const char kEnableNpapi[] = "enable-npapi"; 985 const char kEnableNpapi[] = "enable-npapi";
989 986
990 #if defined(ENABLE_PLUGINS) 987 #if defined(ENABLE_PLUGINS)
991 // Enables the plugin power saver feature. 988 // Enables the plugin power saver feature.
992 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 989 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
993 #endif 990 #endif
994 991
995 // Don't dump stuff here, follow the same order as the header. 992 // Don't dump stuff here, follow the same order as the header.
996 993
997 } // namespace switches 994 } // 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