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

Unified Diff: mojo/apps/js/test/js_to_cpp.mojom

Issue 292243002: Add mojo bindings backpointer tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove stray "explicit" keywords. Created 6 years, 7 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
« no previous file with comments | « no previous file | mojo/apps/js/test/js_to_cpp_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/apps/js/test/js_to_cpp.mojom
diff --git a/mojo/apps/js/test/js_to_cpp.mojom b/mojo/apps/js/test/js_to_cpp.mojom
index 0f16f7fce978d17de8167b6223e610e4bbaf3746..7dd036cc4c1655b1174e4d64e6ad0758c60b3f58 100644
--- a/mojo/apps/js/test/js_to_cpp.mojom
+++ b/mojo/apps/js/test/js_to_cpp.mojom
@@ -30,17 +30,19 @@ struct EchoArgsList {
interface CppSide {
StartTest(); // Sent for all tests to notify that the JS side is now ready.
- TestFinished(); // Sent in echo / bit-flip tests to indicate end.
+ TestFinished(); // Indicates end for echo, bit-flip, and back-pointer tests.
PingResponse();
EchoResponse(EchoArgsList list);
- BitFlipResponse(EchoArgs arg);
+ BitFlipResponse(EchoArgsList arg);
+ BackPointerResponse(EchoArgsList arg);
};
[Client=CppSide]
interface JsSide {
Ping();
- Echo(int32 numIterations, EchoArgsList list);
+ Echo(int32 numIterations, EchoArgs arg);
BitFlip(EchoArgs arg);
+ BackPointer(EchoArgs arg);
};
}
« no previous file with comments | « no previous file | mojo/apps/js/test/js_to_cpp_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698