Index: ppapi/native_client/tests/ppapi_browser/ppb_dev/ppapi_ppb_dev.cc |
diff --git a/ppapi/native_client/tests/ppapi_browser/ppb_dev/ppapi_ppb_dev.cc b/ppapi/native_client/tests/ppapi_browser/ppb_dev/ppapi_ppb_dev.cc |
index 964b1f367e4cbe1a0ff315c055f19b7764cc3d89..ba6cfa075b1d3cc5eb2abfc8d37a501b9d76f22c 100644 |
--- a/ppapi/native_client/tests/ppapi_browser/ppb_dev/ppapi_ppb_dev.cc |
+++ b/ppapi/native_client/tests/ppapi_browser/ppb_dev/ppapi_ppb_dev.cc |
@@ -16,7 +16,7 @@ |
#include "ppapi/c/pp_errors.h" |
#include "ppapi/c/ppb_core.h" |
-#include "ppapi/c/dev/ppb_cursor_control_dev.h" |
+#include "ppapi/c/ppb_mouse_cursor.h" |
namespace { |
@@ -24,11 +24,11 @@ namespace { |
// Test Cases |
//////////////////////////////////////////////////////////////////////////////// |
-void TestGetDevInterfaces() { |
+void TestGetInterfaces() { |
// This test is run as a simple embedded .nexe with --enable-nacl. It should |
// have access to all dev interfaces. Only test one to make the test more |
// robust as interfaces change. |
- EXPECT(GetBrowserInterface(PPB_CURSOR_CONTROL_DEV_INTERFACE) != NULL); |
+ EXPECT(GetBrowserInterface(PPB_MOUSE_CURSOR_INTERFACE) != NULL); |
TEST_PASSED; |
} |
@@ -36,7 +36,7 @@ void TestGetDevInterfaces() { |
} // namespace |
void SetupTests() { |
- RegisterTest("TestGetDevInterfaces", TestGetDevInterfaces); |
+ RegisterTest("TestGetInterfaces", TestGetInterfaces); |
} |
void SetupPluginInterfaces() { |