blob: 6ae05d5613cd0f4422550b718e23b38ef3172d81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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.
#ifndef CONTENT_TEST_BLINK_TEST_ENVIRONMENT_H_
#define CONTENT_TEST_BLINK_TEST_ENVIRONMENT_H_
// This package provides functions used by webkit_unit_tests.
namespace content {
// Initializes Blink test environment for unit tests.
void SetUpBlinkTestEnvironment();
// Terminates Blink test environment for unit tests.
void TearDownBlinkTestEnvironment();
} // namespace content
#endif // CONTENT_TEST_BLINK_TEST_ENVIRONMENT_H_
|