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

Unified Diff: content/test/data/web_ui_test_mojo_bindings.mojom

Issue 250713003: Test sending corrupt mojo messages back from javascript. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Uint32 => Uint8 for consistency. Created 6 years, 8 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: content/test/data/web_ui_test_mojo_bindings.mojom
diff --git a/content/test/data/web_ui_test_mojo_bindings.mojom b/content/test/data/web_ui_test_mojo_bindings.mojom
index 7fde1b3d5dfc6c89be11cb6b9b811def0c702f20..89baf5e4943fb41a0121f27f0994f0b61f57d156 100644
--- a/content/test/data/web_ui_test_mojo_bindings.mojom
+++ b/content/test/data/web_ui_test_mojo_bindings.mojom
@@ -24,12 +24,14 @@ struct EchoArgs {
interface BrowserTarget {
PingResponse();
EchoResponse(EchoArgs arg1, EchoArgs arg2);
+ FlipBitsResponse(EchoArgs arg);
};
[Peer=BrowserTarget]
interface RendererTarget {
Ping();
- Echo(EchoArgs arg);
+ Echo(int32 numIterations, EchoArgs arg);
+ FlipBits(int32 numIterations, EchoArgs arg);
};
}

Powered by Google App Engine
This is Rietveld 408576698