Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1045)

Unified Diff: webkit/plugins/npapi/test/plugin_test_factory.cc

Issue 7037027: Fixes Issues #5751 & #22631: NPObject identity (Closed)
Patch Set: hopefully added base url Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/npapi/test/plugin_npobject_identity_test.cc ('k') | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/test/plugin_test_factory.cc
diff --git a/webkit/plugins/npapi/test/plugin_test_factory.cc b/webkit/plugins/npapi/test/plugin_test_factory.cc
index 779ad00953592cddfcddd9df573b401d55c34f35..4fe7689cc6bb77feaa189f67e5e8a9beb8865116 100644
--- a/webkit/plugins/npapi/test/plugin_test_factory.cc
+++ b/webkit/plugins/npapi/test/plugin_test_factory.cc
@@ -11,6 +11,7 @@
#include "webkit/plugins/npapi/test/plugin_geturl_test.h"
#include "webkit/plugins/npapi/test/plugin_javascript_open_popup.h"
#include "webkit/plugins/npapi/test/plugin_new_fails_test.h"
+#include "webkit/plugins/npapi/test/plugin_npobject_identity_test.h"
#include "webkit/plugins/npapi/test/plugin_npobject_lifetime_test.h"
#include "webkit/plugins/npapi/test/plugin_npobject_proxy_test.h"
#include "webkit/plugins/npapi/test/plugin_private_test.h"
@@ -37,6 +38,8 @@ PluginTest* CreatePluginTest(const std::string& test_name,
test_name == "plugin_referrer_test" ||
test_name == "geturlredirectnotify") {
new_test = new PluginGetURLTest(instance, host_functions);
+ } else if (test_name == "npobject_identity") {
+ new_test = new NPObjectIdentityTest(instance, host_functions);
} else if (test_name == "npobject_proxy") {
new_test = new NPObjectProxyTest(instance, host_functions);
#if defined(OS_WIN) || defined(OS_MACOSX)
« no previous file with comments | « webkit/plugins/npapi/test/plugin_npobject_identity_test.cc ('k') | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698