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

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

Issue 1407883005: Added field trial for enabling AppContainer and a chrome://flags entry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added disable switch and changed flags Created 5 years, 1 month 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') | tools/metrics/histograms/histograms.xml » ('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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 // Mutes audio sent to the audio device so it is not audible during 585 // Mutes audio sent to the audio device so it is not audible during
586 // automated testing. 586 // automated testing.
587 const char kMuteAudio[] = "mute-audio"; 587 const char kMuteAudio[] = "mute-audio";
588 588
589 // Don't send HTTP-Referer headers. 589 // Don't send HTTP-Referer headers.
590 const char kNoReferrers[] = "no-referrers"; 590 const char kNoReferrers[] = "no-referrers";
591 591
592 // Disables the sandbox for all process types that are normally sandboxed. 592 // Disables the sandbox for all process types that are normally sandboxed.
593 const char kNoSandbox[] = "no-sandbox"; 593 const char kNoSandbox[] = "no-sandbox";
594 594
595 // Enables appcontainer/lowbox for renderer on Win8+ platforms. 595 // Enable or disable appcontainer/lowbox for renderer on Win8+ platforms.
596 const char kEnableAppContainer[] = "enable-appcontainer"; 596 const char kEnableAppContainer[] = "enable-appcontainer";
597 const char kDisableAppContainer[] = "disable-appcontainer";
597 598
598 // Number of worker threads used to rasterize content. 599 // Number of worker threads used to rasterize content.
599 const char kNumRasterThreads[] = "num-raster-threads"; 600 const char kNumRasterThreads[] = "num-raster-threads";
600 601
601 // Override the behavior of plugin throttling for testing. 602 // Override the behavior of plugin throttling for testing.
602 // By default the throttler is only enabled for a hard-coded list of plugins. 603 // By default the throttler is only enabled for a hard-coded list of plugins.
603 // Set the value to 'ignore-list' to ignore the hard-coded list. 604 // Set the value to 'ignore-list' to ignore the hard-coded list.
604 // Set the value to 'always' to always throttle every plugin instance. 605 // Set the value to 'always' to always throttle every plugin instance.
605 const char kOverridePluginPowerSaverForTesting[] = 606 const char kOverridePluginPowerSaverForTesting[] =
606 "override-plugin-power-saver-for-testing"; 607 "override-plugin-power-saver-for-testing";
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 967 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
967 968
968 // Enables the exporting of the tracing events to ETW. This is only supported on 969 // Enables the exporting of the tracing events to ETW. This is only supported on
969 // Windows Vista and later. 970 // Windows Vista and later.
970 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 971 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
971 #endif 972 #endif
972 973
973 // Don't dump stuff here, follow the same order as the header. 974 // Don't dump stuff here, follow the same order as the header.
974 975
975 } // namespace switches 976 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698