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

Unified Diff: content/common/content_switches_internal.cc

Issue 2411483002: Enable win32k lockdown for ppapi processes. (Closed)
Patch Set: readd entry Created 4 years, 2 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 | « content/common/content_switches_internal.h ('k') | content/common/sandbox_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/content_switches_internal.cc
diff --git a/content/common/content_switches_internal.cc b/content/common/content_switches_internal.cc
index c0f0cc6550fb272b7a1b136b573dcb52cc690e99..eeb18a7603b40c6987a33bbfe248b5fe2591a163 100644
--- a/content/common/content_switches_internal.cc
+++ b/content/common/content_switches_internal.cc
@@ -48,11 +48,11 @@ bool IsPinchToZoomEnabled() {
#if defined(OS_WIN)
-bool IsWin32kRendererLockdownEnabled() {
+bool IsWin32kLockdownEnabled() {
if (base::win::GetVersion() < base::win::VERSION_WIN8)
return false;
const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
- if (cmd_line->HasSwitch(switches::kDisableWin32kRendererLockDown))
+ if (cmd_line->HasSwitch(switches::kDisableWin32kLockDown))
return false;
return true;
}
« no previous file with comments | « content/common/content_switches_internal.h ('k') | content/common/sandbox_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698