blob: e8b5db9e9b75ca3f19971ba41d2ed6853789fe4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Copyright (c) 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.
#ifndef CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_
#define CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_
#pragma once
#include "build/build_config.h"
#if defined(OS_WIN)
#include <windows.h>
#endif
#include "base/basictypes.h"
#include "content/common/content_export.h"
#include "content/public/common/main_function_params.h"
#ifdef __OBJC__
@class NSBundle;
#else
class NSBundle;
#endif // __OBJC__
class CONTENT_EXPORT RendererMainPlatformDelegate {
public:
explicit RendererMainPlatformDelegate(
const content::MainFunctionParams& parameters);
~RendererMainPlatformDelegate();
// Called first thing and last thing in the process' lifecycle, i.e. before
// the sandbox is enabled.
void PlatformInitialize();
void PlatformUninitialize();
// Gives us an opportunity to initialize state used for tests before enabling
// the sandbox.
bool InitSandboxTests(bool no_sandbox);
// Initiate Lockdown, returns true on success.
bool EnableSandbox();
// Runs Sandbox tests.
void RunSandboxTests();
private:
const content::MainFunctionParams& parameters_;
#if defined(OS_WIN)
HMODULE sandbox_test_module_;
#elif defined(OS_MACOSX)
NSBundle* sandbox_tests_bundle_;
#endif
DISALLOW_COPY_AND_ASSIGN(RendererMainPlatformDelegate);
};
#endif // CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_
|