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

Unified Diff: third_party/WebKit/LayoutTests/mojo/union.html

Issue 2820783002: Add associated interfaces & bindings. (Closed)
Patch Set: Change Router.prototype.accept. Add a TODO for endpoint client not attached. Created 3 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: third_party/WebKit/LayoutTests/mojo/union.html
diff --git a/third_party/WebKit/LayoutTests/mojo/union.html b/third_party/WebKit/LayoutTests/mojo/union.html
index 96f2b7eaff6c742053077308e9f19937b10ad68b..167bd36527d6492fb9399217abb5fee1830a7c7f 100644
--- a/third_party/WebKit/LayoutTests/mojo/union.html
+++ b/third_party/WebKit/LayoutTests/mojo/union.html
@@ -47,7 +47,7 @@ define([
function structEncodeDecode(struct) {
var structClass = struct.constructor;
- var builder = new codec.MessageBuilder(1234, structClass.encodedSize);
+ var builder = new codec.MessageV0Builder(1234, structClass.encodedSize);
builder.encodeStruct(structClass, struct);
var message = builder.finish();
@@ -146,7 +146,7 @@ define([
function structValidate(struct) {
var structClass = struct.constructor;
- var builder = new codec.MessageBuilder(1234, structClass.encodedSize);
+ var builder = new codec.MessageV0Builder(1234, structClass.encodedSize);
builder.encodeStruct(structClass, struct);
var message = builder.finish();
« no previous file with comments | « third_party/WebKit/LayoutTests/mojo/struct.html ('k') | third_party/WebKit/LayoutTests/vibration/vibration-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698