2011-03-24 21:36:47 +01:00
|
|
|
// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_OSRPLUGIN_TEST_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_OSRPLUGIN_TEST_H_
|
|
|
|
#pragma once
|
2011-03-24 21:36:47 +01:00
|
|
|
|
2011-12-23 18:36:30 +01:00
|
|
|
#include "include/cef_base.h"
|
|
|
|
|
|
|
|
class CefBrowser;
|
2011-03-24 21:36:47 +01:00
|
|
|
|
|
|
|
// Register the internal client plugin and V8 extension.
|
|
|
|
void InitOSRPluginTest();
|
|
|
|
|
|
|
|
// Run the test.
|
2011-10-21 21:35:19 +02:00
|
|
|
void RunOSRPluginTest(CefRefPtr<CefBrowser> browser, bool transparent);
|
2011-03-24 21:36:47 +01:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_OSRPLUGIN_TEST_H_
|