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

Unified Diff: ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.c

Issue 8951014: Change the DidChangeView update to take a new ViewChanged resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More nacl fixes Created 9 years 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_messaging/ppapi_messaging.c
diff --git a/ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.c b/ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.c
index 1caedd1b1624093e368ee2e1a028a4fdc901b150..fe151eb064a0de9c61bbcdb41b9cda9ec8908ef5 100644
--- a/ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.c
+++ b/ppapi/native_client/tests/ppapi_messaging/ppapi_messaging.c
@@ -99,11 +99,9 @@ void DidDestroy(PP_Instance instance) {
}
void DidChangeView(PP_Instance instance,
- const struct PP_Rect* position,
- const struct PP_Rect* clip) {
+ PP_Resource resource) {
UNREFERENCED_PARAMETER(instance);
- UNREFERENCED_PARAMETER(position);
- UNREFERENCED_PARAMETER(clip);
+ UNREFERENCED_PARAMETER(resource);
}
void DidChangeFocus(PP_Instance instance,

Powered by Google App Engine
This is Rietveld 408576698