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

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: Hoist application interface dependence 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
« no previous file with comments | « mojo/public/dart/rules.gni ('k') | mojo/public/dart/src/data_pipe.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..5e153be576f9ccc9647519e7797492f6ff872878 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;
@@ -32,11 +13,11 @@ class MojoSharedBuffer {
MojoResult status;
ByteData mapping;
- MojoSharedBuffer(
- this.handle, [this.status = MojoResult.OK, this.mapping = null]);
+ 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,13 +33,13 @@ 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;
}
assert((result is List) && (result.length == 2));
var r = new MojoResult(result[0]);
- if(!r.isOk) {
+ if (!r.isOk) {
return null;
}
@@ -83,8 +64,8 @@ class MojoSharedBuffer {
status = MojoResult.INVALID_ARGUMENT;
return status;
}
- List result = _MojoSharedBufferNatives.Map(
- this, handle.h, offset, numBytes, flags);
+ List result =
+ MojoSharedBufferNatives.Map(this, handle.h, offset, numBytes, flags);
if (result == null) {
status = MojoResult.INVALID_ARGUMENT;
return status;
@@ -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;
« no previous file with comments | « mojo/public/dart/rules.gni ('k') | mojo/public/dart/src/data_pipe.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698