| OLD | NEW |
| (Empty) |
| 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 WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_TEST_FACTROY_H__ | |
| 6 #define WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_TEST_FACTROY_H__ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "third_party/npapi/bindings/nphostapi.h" | |
| 11 | |
| 12 namespace NPAPIClient { | |
| 13 | |
| 14 class PluginTest; | |
| 15 | |
| 16 extern PluginTest* CreatePluginTest(const std::string& test_name, | |
| 17 NPP instance, | |
| 18 NPNetscapeFuncs* host_functions); | |
| 19 | |
| 20 } // namespace NPAPIClient | |
| 21 | |
| 22 #endif // WEBKIT_PLUGINS_NPAPI_TEST_PLUGIN_TEST_FACTROY_H__ | |
| OLD | NEW |