1// Copyright (c) 2010 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONTENT_TEST_PLUGIN_PLUGIN_TEST_FACTROY_H__
6#define CONTENT_TEST_PLUGIN_PLUGIN_TEST_FACTROY_H__
7
8#include <string>
9
10#include "third_party/npapi/bindings/nphostapi.h"
11
12namespace NPAPIClient {
13
14class PluginTest;
15
16extern PluginTest* CreatePluginTest(const std::string& test_name,
17                                    NPP instance,
18                                    NPNetscapeFuncs* host_functions);
19
20}  // namespace NPAPIClient
21
22#endif  // CONTENT_TEST_PLUGIN_PLUGIN_TEST_FACTROY_H__
23