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

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

Issue 7806020: Add DeletePluginInDeallocate UI test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Correct Copyright header. Created 9 years, 3 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
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 4fe7689cc6bb77feaa189f67e5e8a9beb8865116..a1931f225442529c6b8cbac3172d223cf424ce32 100644
--- a/webkit/plugins/npapi/test/plugin_test_factory.cc
+++ b/webkit/plugins/npapi/test/plugin_test_factory.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -6,6 +6,7 @@
#include "webkit/plugins/npapi/test/plugin_arguments_test.h"
#include "webkit/plugins/npapi/test/plugin_delete_plugin_in_stream_test.h"
+#include "webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_test.h"
#include "webkit/plugins/npapi/test/plugin_get_javascript_url_test.h"
#include "webkit/plugins/npapi/test/plugin_get_javascript_url2_test.h"
#include "webkit/plugins/npapi/test/plugin_geturl_test.h"
@@ -99,6 +100,8 @@ PluginTest* CreatePluginTest(const std::string& test_name,
} else if (test_name == "setup") {
// "plugin" is the name for plugin documents.
new_test = new PluginSetupTest(instance, host_functions);
+ } else if (test_name == "delete_plugin_in_deallocate_test") {
+ new_test = new DeletePluginInDeallocateTest(instance, host_functions);
}
return new_test;
« no previous file with comments | « webkit/plugins/npapi/test/plugin_delete_plugin_in_deallocate_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