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

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

Issue 959993002: Dart: Removes name conflicts from generated bindings. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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/codec.dart
diff --git a/mojo/public/dart/src/codec.dart b/mojo/public/dart/src/codec.dart
index 677dc10a7b33b1976f296db1939cc9f6c7faceb0..49c7c283717956846202eb962b0eba7ee4ded6a9 100644
--- a/mojo/public/dart/src/codec.dart
+++ b/mojo/public/dart/src/codec.dart
@@ -697,7 +697,7 @@ class Decoder {
ArrayDataHeader decodeDataHeaderForArray(int elementSize,
int expectedLength) {
var header = decodeArrayDataHeader();
- var arrayByteCount =
+ var arrayByteCount =
ArrayDataHeader.kHeaderSize + header.numElements * elementSize;
if (header.size < arrayByteCount) {
throw new MojoCodecError(

Powered by Google App Engine
This is Rietveld 408576698