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

Unified Diff: mojo/public/dart/src/buffer.dart

Issue 1027603002: Dart: Removes all but native calls and the handle watcher from the snapshot. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix SDK dir for SDK mojoms in Modular 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: mojo/public/dart/src/buffer.dart
diff --git a/mojo/public/dart/src/buffer.dart b/mojo/public/dart/src/buffer.dart
index 44673157e5c5b34afa0c56ff42184add3ab9d821..f4807228acc867373f4670c488ca58c7cc4ba6dc 100644
--- a/mojo/public/dart/src/buffer.dart
+++ b/mojo/public/dart/src/buffer.dart
@@ -4,25 +4,6 @@
part of core;
-class _MojoSharedBufferNatives {
- static List Create(int numBytes, int flags)
- native "MojoSharedBuffer_Create";
-
- static List Duplicate(int bufferHandle, int flags)
- native "MojoSharedBuffer_Duplicate";
-
- static List Map(MojoSharedBuffer buffer,
- int bufferHandle,
- int offset,
- int numBytes,
- int flags)
- native "MojoSharedBuffer_Map";
-
- static int Unmap(ByteData buffer)
- native "MojoSharedBuffer_Unmap";
-}
-
-
class MojoSharedBuffer {
static const int CREATE_FLAG_NONE = 0;
static const int DUPLICATE_FLAG_NONE = 0;
@@ -36,7 +17,7 @@ class MojoSharedBuffer {
this.handle, [this.status = MojoResult.OK, this.mapping = null]);
factory MojoSharedBuffer.create(int numBytes, [int flags = 0]) {
- List result = _MojoSharedBufferNatives.Create(numBytes, flags);
+ List result = MojoSharedBufferNatives.Create(numBytes, flags);
if (result == null) {
return null;
}
@@ -52,7 +33,7 @@ class MojoSharedBuffer {
}
factory MojoSharedBuffer.duplicate(MojoSharedBuffer msb, [int flags = 0]) {
- List result = _MojoSharedBufferNatives.Duplicate(msb.handle.h, flags);
+ List result = MojoSharedBufferNatives.Duplicate(msb.handle.h, flags);
if (result == null) {
return null;
}
@@ -83,7 +64,7 @@ class MojoSharedBuffer {
status = MojoResult.INVALID_ARGUMENT;
return status;
}
- List result = _MojoSharedBufferNatives.Map(
+ List result = MojoSharedBufferNatives.Map(
this, handle.h, offset, numBytes, flags);
if (result == null) {
status = MojoResult.INVALID_ARGUMENT;
@@ -96,7 +77,7 @@ class MojoSharedBuffer {
}
MojoResult unmap() {
- int r = _MojoSharedBufferNatives.Unmap(mapping);
+ int r = MojoSharedBufferNatives.Unmap(mapping);
status = new MojoResult(r);
mapping = null;
return status;

Powered by Google App Engine
This is Rietveld 408576698