blob: 3cdf47b6247e0c67491261e319a64fc4cb66c055 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sandbox/win/src/process_mitigations_win32k_policy.h"
#include <stddef.h>
#include "sandbox/win/src/process_mitigations_win32k_interception.h"
namespace sandbox {
bool ProcessMitigationsWin32KLockdownPolicy::GenerateRules(
const wchar_t* name,
TargetPolicy::Semantics semantics,
LowLevelPolicy* policy) {
PolicyRule rule(FAKE_SUCCESS);
if (!policy->AddRule(IpcTag::GDI_GDIDLLINITIALIZE, &rule))
return false;
if (!policy->AddRule(IpcTag::GDI_GETSTOCKOBJECT, &rule))
return false;
if (!policy->AddRule(IpcTag::USER_REGISTERCLASSW, &rule))
return false;
return true;
}
} // namespace sandbox