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

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

Issue 1258173002: Changing command line flag from disable appcontainer to enable appcontainer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 // Mutes audio sent to the audio device so it is not audible during 602 // Mutes audio sent to the audio device so it is not audible during
603 // automated testing. 603 // automated testing.
604 const char kMuteAudio[] = "mute-audio"; 604 const char kMuteAudio[] = "mute-audio";
605 605
606 // Don't send HTTP-Referer headers. 606 // Don't send HTTP-Referer headers.
607 const char kNoReferrers[] = "no-referrers"; 607 const char kNoReferrers[] = "no-referrers";
608 608
609 // Disables the sandbox for all process types that are normally sandboxed. 609 // Disables the sandbox for all process types that are normally sandboxed.
610 const char kNoSandbox[] = "no-sandbox"; 610 const char kNoSandbox[] = "no-sandbox";
611 611
612 // Disables appcontainer/lowbox for renderer on Win8+ platforms. 612 // Enables appcontainer/lowbox for renderer on Win8+ platforms.
613 const char kDisableAppContainer[] = "disable-appcontainer"; 613 const char kEnableAppContainer[] = "enable-appcontainer";
614 614
615 // Number of worker threads used to rasterize content. 615 // Number of worker threads used to rasterize content.
616 const char kNumRasterThreads[] = "num-raster-threads"; 616 const char kNumRasterThreads[] = "num-raster-threads";
617 617
618 // Override the behavior of plugin throttling for testing. 618 // Override the behavior of plugin throttling for testing.
619 // By default the throttler is only enabled for a hard-coded list of plugins. 619 // By default the throttler is only enabled for a hard-coded list of plugins.
620 // Set the value to 'never' to disable throttling. 620 // Set the value to 'never' to disable throttling.
621 // Set the value to 'ignore-list' to ignore the hard-coded list. 621 // Set the value to 'ignore-list' to ignore the hard-coded list.
622 // Set the value to 'always' to always throttle every plugin instance. 622 // Set the value to 'always' to always throttle every plugin instance.
623 const char kOverridePluginPowerSaverForTesting[] = 623 const char kOverridePluginPowerSaverForTesting[] =
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1010 // Windows Vista and later. 1010 // Windows Vista and later.
1011 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1011 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1012 #endif 1012 #endif
1013 1013
1014 // Enables the use of NPAPI plugins. 1014 // Enables the use of NPAPI plugins.
1015 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; 1015 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing";
1016 1016
1017 // Don't dump stuff here, follow the same order as the header. 1017 // Don't dump stuff here, follow the same order as the header.
1018 1018
1019 } // namespace switches 1019 } // 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