Index: ppapi/proxy/plugin_dispatcher_unittest.cc |
diff --git a/ppapi/proxy/plugin_dispatcher_unittest.cc b/ppapi/proxy/plugin_dispatcher_unittest.cc |
index 83a5cf4687dcc9aa3672a8a405e25539d9c62667..821ecad3799c3441408892e81697ffab7041ce54 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(IsInterfaceSupported("Random interface")); |
+ EXPECT_FALSE(SupportsInterface("Random interface")); |
// Sending a request for a supported PPP interface should succeed. |
- EXPECT_TRUE(IsInterfaceSupported(PPP_INSTANCE_INTERFACE)); |
+ EXPECT_TRUE(SupportsInterface(PPP_INSTANCE_INTERFACE)); |
} |
TEST_F(PluginDispatcherTest, PPBCreation) { |