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

Unified Diff: third_party/WebKit/Source/core/mojo/MojoReadDataResult.idl

Issue 2732163002: Implements JS bindings for mojo data pipe. (Closed)
Patch Set: rebase Created 3 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: third_party/WebKit/Source/core/mojo/MojoReadDataResult.idl
diff --git a/third_party/WebKit/Source/core/mojo/MojoReadDataResult.idl b/third_party/WebKit/Source/core/mojo/MojoReadDataResult.idl
new file mode 100644
index 0000000000000000000000000000000000000000..e3150c5b8121e8aa5a6a060b2c030a3e7aef144b
--- /dev/null
+++ b/third_party/WebKit/Source/core/mojo/MojoReadDataResult.idl
@@ -0,0 +1,8 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+dictionary MojoReadDataResult {
+ required MojoResult result;
+ required unsigned long numBytes;
+};

Powered by Google App Engine
This is Rietveld 408576698