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

Unified Diff: third_party/mojo/src/mojo/public/dart/src/data_pipe.dart

Issue 1029113005: Update mojo sdk to rev cb6c5abfadfea0ca73dca466e2894554ac1ae144 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 5 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/mojo/src/mojo/public/dart/src/data_pipe.dart
diff --git a/third_party/mojo/src/mojo/public/dart/src/data_pipe.dart b/third_party/mojo/src/mojo/public/dart/src/data_pipe.dart
index 7f1666d319001456bf48aacfef9535dc192bc5d8..884bbcba8f9d9379ddd2ad7b4853ba2181937526 100644
--- a/third_party/mojo/src/mojo/public/dart/src/data_pipe.dart
+++ b/third_party/mojo/src/mojo/public/dart/src/data_pipe.dart
@@ -4,29 +4,6 @@
part of core;
-class _MojoDataPipeNatives {
- static List MojoCreateDataPipe(int elementBytes, int capacityBytes,
- int flags) native "MojoDataPipe_Create";
-
- static List MojoWriteData(int handle, ByteData data, int numBytes,
- int flags) native "MojoDataPipe_WriteData";
-
- static List MojoBeginWriteData(int handle, int bufferBytes,
- int flags) native "MojoDataPipe_BeginWriteData";
-
- static int MojoEndWriteData(
- int handle, int bytesWritten) native "MojoDataPipe_EndWriteData";
-
- static List MojoReadData(int handle, ByteData data, int numBytes,
- int flags) native "MojoDataPipe_ReadData";
-
- static List MojoBeginReadData(int handle, int bufferBytes,
- int flags) native "MojoDataPipe_BeginReadData";
-
- static int MojoEndReadData(
- int handle, int bytesRead) native "MojoDataPipe_EndReadData";
-}
-
class MojoDataPipeProducer {
static const int FLAG_NONE = 0;
static const int FLAG_ALL_OR_NONE = 1 << 0;
@@ -45,8 +22,8 @@ class MojoDataPipeProducer {
}
int data_numBytes = (numBytes == -1) ? data.lengthInBytes : numBytes;
- List result = _MojoDataPipeNatives.MojoWriteData(
- handle.h, data, data_numBytes, flags);
+ List result =
+ MojoDataPipeNatives.MojoWriteData(handle.h, data, data_numBytes, flags);
if (result == null) {
status = MojoResult.INVALID_ARGUMENT;
return 0;
@@ -64,7 +41,7 @@ class MojoDataPipeProducer {
}
List result =
- _MojoDataPipeNatives.MojoBeginWriteData(handle.h, bufferBytes, flags);
+ MojoDataPipeNatives.MojoBeginWriteData(handle.h, bufferBytes, flags);
if (result == null) {
status = MojoResult.INVALID_ARGUMENT;
return null;
@@ -80,7 +57,7 @@ class MojoDataPipeProducer {
status = MojoResult.INVALID_ARGUMENT;
return status;
}
- int result = _MojoDataPipeNatives.MojoEndWriteData(handle.h, bytesWritten);
+ int result = MojoDataPipeNatives.MojoEndWriteData(handle.h, bytesWritten);
status = new MojoResult(result);
return status;
}
@@ -110,7 +87,7 @@ class MojoDataPipeConsumer {
int data_numBytes = (numBytes == -1) ? data.lengthInBytes : numBytes;
List result =
- _MojoDataPipeNatives.MojoReadData(handle.h, data, data_numBytes, flags);
+ MojoDataPipeNatives.MojoReadData(handle.h, data, data_numBytes, flags);
if (result == null) {
status = MojoResult.INVALID_ARGUMENT;
return 0;
@@ -127,7 +104,7 @@ class MojoDataPipeConsumer {
}
List result =
- _MojoDataPipeNatives.MojoBeginReadData(handle.h, bufferBytes, flags);
+ MojoDataPipeNatives.MojoBeginReadData(handle.h, bufferBytes, flags);
if (result == null) {
status = MojoResult.INVALID_ARGUMENT;
return null;
@@ -143,7 +120,7 @@ class MojoDataPipeConsumer {
status = MojoResult.INVALID_ARGUMENT;
return status;
}
- int result = _MojoDataPipeNatives.MojoEndReadData(handle.h, bytesRead);
+ int result = MojoDataPipeNatives.MojoEndReadData(handle.h, bytesRead);
status = new MojoResult(result);
return status;
}
@@ -171,7 +148,7 @@ class MojoDataPipe {
factory MojoDataPipe([int elementBytes = DEFAULT_ELEMENT_SIZE,
int capacityBytes = DEFAULT_CAPACITY, int flags = FLAG_NONE]) {
- List result = _MojoDataPipeNatives.MojoCreateDataPipe(
+ List result = MojoDataPipeNatives.MojoCreateDataPipe(
elementBytes, capacityBytes, flags);
if (result == null) {
return null;

Powered by Google App Engine
This is Rietveld 408576698