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

Side by Side Diff: mojo/public/dart/lib/src/stub.dart

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « mojo/public/dart/lib/src/struct.dart ('k') | mojo/public/dart/lib/src/timer_queue.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 part of bindings; 5 part of bindings;
6 6
7 abstract class Stub extends core.MojoEventStreamListener { 7 abstract class Stub extends core.MojoEventStreamListener {
8 int _outstandingResponseFutures = 0; 8 int _outstandingResponseFutures = 0;
9 bool _isClosing = false; 9 bool _isClosing = false;
10 Completer _closeCompleter; 10 Completer _closeCompleter;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 return response.serializeWithHeader(header); 121 return response.serializeWithHeader(header);
122 } 122 }
123 123
124 String toString() { 124 String toString() {
125 var superString = super.toString(); 125 var superString = super.toString();
126 return "Stub(${superString})"; 126 return "Stub(${superString})";
127 } 127 }
128 128
129 int get version; 129 int get version;
130 } 130 }
OLDNEW
« no previous file with comments | « mojo/public/dart/lib/src/struct.dart ('k') | mojo/public/dart/lib/src/timer_queue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698