#ifndef CONTENT_TEST_PLUGIN_PLUGIN_CREATE_INSTANCE_IN_PAINT_H_
#define CONTENT_TEST_PLUGIN_PLUGIN_CREATE_INSTANCE_IN_PAINT_H_
#include "content/test/plugin/plugin_test.h"
namespace NPAPIClient {
class CreateInstanceInPaintTest : public PluginTest {
public:
CreateInstanceInPaintTest(NPP id, NPNetscapeFuncs *host_functions);
virtual NPError SetWindow(NPWindow* pNPWindow);
private:
static LRESULT CALLBACK WindowProc(
HWND window, UINT message, WPARAM wparam, LPARAM lparam);
HWND window_;
bool created_;
};
}
#endif