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

Unified Diff: runtime/bin/chunked_stream.dart

Issue 10915007: Use new getters syntax in dart:io. A few were missed in the first round of cleanup. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « runtime/bin/buffer_list.dart ('k') | runtime/bin/directory_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/chunked_stream.dart
diff --git a/runtime/bin/chunked_stream.dart b/runtime/bin/chunked_stream.dart
index fa5449ddd9b8018cc0d522729358771f399ad28f..798adacc2614d2b0cc0a8539f0cb4d4deb091cd0 100644
--- a/runtime/bin/chunked_stream.dart
+++ b/runtime/bin/chunked_stream.dart
@@ -29,7 +29,7 @@ class _ChunkedInputStream implements ChunkedInputStream {
return result;
}
- int get chunkSize() => _chunkSize;
+ int get chunkSize => _chunkSize;
void set chunkSize(int chunkSize) {
_chunkSize = chunkSize;
@@ -37,7 +37,7 @@ class _ChunkedInputStream implements ChunkedInputStream {
_checkScheduleCallback();
}
- bool get closed() => _closed;
+ bool get closed => _closed;
void set onData(void callback()) {
_clientDataHandler = callback;
« no previous file with comments | « runtime/bin/buffer_list.dart ('k') | runtime/bin/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698