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

Unified Diff: ppapi/proxy/plugin_dispatcher_unittest.cc

Issue 704913002: PPAPI: Make GetProxiedInterface not re-enter the plugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make SimulateInputEvent test message asynchronous. Created 6 years, 1 month 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: ppapi/proxy/plugin_dispatcher_unittest.cc
diff --git a/ppapi/proxy/plugin_dispatcher_unittest.cc b/ppapi/proxy/plugin_dispatcher_unittest.cc
index 821ecad3799c3441408892e81697ffab7041ce54..83a5cf4687dcc9aa3672a8a405e25539d9c62667 100644
--- a/ppapi/proxy/plugin_dispatcher_unittest.cc
+++ b/ppapi/proxy/plugin_dispatcher_unittest.cc
@@ -62,10 +62,10 @@ TEST_F(PluginDispatcherTest, SupportsInterface) {
RegisterTestInterface(PPP_INSTANCE_INTERFACE, &dummy_ppp_instance_interface);
// Sending a request for a random interface should fail.
- EXPECT_FALSE(SupportsInterface("Random interface"));
+ EXPECT_FALSE(IsInterfaceSupported("Random interface"));
// Sending a request for a supported PPP interface should succeed.
- EXPECT_TRUE(SupportsInterface(PPP_INSTANCE_INTERFACE));
+ EXPECT_TRUE(IsInterfaceSupported(PPP_INSTANCE_INTERFACE));
}
TEST_F(PluginDispatcherTest, PPBCreation) {

Powered by Google App Engine
This is Rietveld 408576698