summaryrefslogtreecommitdiffstats
path: root/webkit/support/platform_support.h
blob: eb80e824879983f6e72b0613994583ed285edb63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2010 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 WEBKIT_SUPPORT_PLATFORM_SUPORT_H_
#define WEBKIT_SUPPORT_PLATFORM_SUPORT_H_

namespace webkit_support {
// Called before WebKit::initialize().
void BeforeInitialize(bool unit_test_mode);

// Called after WebKit::initialize().
void AfterInitialize(bool unit_test_mode);

// Called before WebKit::shutdown().
void BeforeShutdown();

// Called after WebKit::shutdown().
void AfterShutdown();
}  // namespace webkit_support

#endif  // WEBKIT_SUPPORT_PLATFORM_SUPORT_H_