mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Create 2272 release branch for CEF3.
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/2272@1993 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
39
libcef_dll/sandbox/sandbox_win.cc
Normal file
39
libcef_dll/sandbox/sandbox_win.cc
Normal file
@@ -0,0 +1,39 @@
|
||||
// Copyright 2013 The Chromium Embedded Framework Authors. Portions Copyright
|
||||
// 2011 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 this first to avoid conflicts with cef_macros.h.
|
||||
#include "base/macros.h"
|
||||
|
||||
#include "include/cef_sandbox_win.h"
|
||||
|
||||
#include "sandbox/win/src/process_mitigations.h"
|
||||
#include "sandbox/win/src/sandbox_factory.h"
|
||||
|
||||
namespace {
|
||||
|
||||
// From content/app/startup_helper_win.cc:
|
||||
void InitializeSandboxInfo(sandbox::SandboxInterfaceInfo* info) {
|
||||
info->broker_services = sandbox::SandboxFactory::GetBrokerServices();
|
||||
if (!info->broker_services) {
|
||||
info->target_services = sandbox::SandboxFactory::GetTargetServices();
|
||||
} else {
|
||||
// Ensure the proper mitigations are enforced for the browser process.
|
||||
sandbox::ApplyProcessMitigationsToCurrentProcess(
|
||||
sandbox::MITIGATION_DEP |
|
||||
sandbox::MITIGATION_DEP_NO_ATL_THUNK);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
void* cef_sandbox_info_create() {
|
||||
sandbox::SandboxInterfaceInfo* info = new sandbox::SandboxInterfaceInfo();
|
||||
memset(info, 0, sizeof(sandbox::SandboxInterfaceInfo));
|
||||
InitializeSandboxInfo(info);
|
||||
return info;
|
||||
}
|
||||
|
||||
void cef_sandbox_info_destroy(void* sandbox_info) {
|
||||
delete static_cast<sandbox::SandboxInterfaceInfo*>(sandbox_info);
|
||||
}
|
Reference in New Issue
Block a user