| Index: webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_test.h
|
| diff --git a/webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_test.h b/webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_test.h
|
| index 4dabd0e647460b7038ee7127f686086ed44ec7a2..af1ce74dc707be8eaa8dbf8a6f92fb3983901dbc 100644
|
| --- a/webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_test.h
|
| +++ b/webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_test.h
|
| @@ -4,6 +4,7 @@
|
| #ifndef WEBKIT_PLUGINS_NPAPI_TEST_DELETE_PLUGIN_IN_DEALLOCATE_TEST_H_
|
| #define WEBKIT_PLUGINS_NPAPI_TEST_DELETE_PLUGIN_IN_DEALLOCATE_TEST_H_
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "webkit/plugins/npapi/test/plugin_test.h"
|
|
|
| namespace NPAPIClient {
|
| @@ -18,8 +19,8 @@ class DeletePluginInDeallocateTest : public PluginTest {
|
| DeletePluginInDeallocateTest(NPP id, NPNetscapeFuncs* host_functions);
|
|
|
| // NPAPI handlers.
|
| - virtual NPError SetWindow(NPWindow* pNPWindow);
|
| - virtual NPError Destroy();
|
| + virtual NPError SetWindow(NPWindow* pNPWindow) OVERRIDE;
|
| + virtual NPError Destroy() OVERRIDE;
|
|
|
| NPObject* npobject_;
|
| bool test_started_;
|
|
|