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

Unified Diff: content/common/sandbox_win.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, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/sandbox_win.cc
diff --git a/content/common/sandbox_win.cc b/content/common/sandbox_win.cc
index f6d9cf258729da3ece34b36fbde8386427e94da7..3e0dbc0484693fe4c75e38e405b30b7d41cb114d 100644
--- a/content/common/sandbox_win.cc
+++ b/content/common/sandbox_win.cc
@@ -581,7 +581,7 @@ void AddAppContainerPolicy(sandbox::TargetPolicy* policy, const wchar_t* sid) {
base::win::GetVersion() == base::win::VERSION_WIN8_1) {
const base::CommandLine& command_line =
*base::CommandLine::ForCurrentProcess();
- if (!command_line.HasSwitch(switches::kDisableAppContainer)) {
+ if (command_line.HasSwitch(switches::kEnableAppContainer)) {
policy->SetLowBox(sid);
}
}
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698