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

Unified Diff: ppapi/native_client/tests/ppapi_browser/ppb_dev/ppapi_ppb_dev.cc

Issue 9814015: Add new MouseCursor interface for setting the mouse cursor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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: 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() {

Powered by Google App Engine
This is Rietveld 408576698