| Index: content/test/blink_test_environment.h
|
| diff --git a/content/test/blink_test_environment.h b/content/test/blink_test_environment.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..48f4bfb10eae465fd7015b90e29727fba8e7f8a2
|
| --- /dev/null
|
| +++ b/content/test/blink_test_environment.h
|
| @@ -0,0 +1,24 @@
|
| +// 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();
|
| +
|
| +// TODO(tfarina): Remove these when Blink is updated to call the above
|
| +// functions. DEPRECATED!
|
| +void SetUpTestEnvironmentForUnitTests();
|
| +void TearDownTestEnvironment();
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_TEST_BLINK_TEST_ENVIRONMENT_H_
|
|
|