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

Side by Side Diff: samples/chat/dart_client/chat.dart

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « samples/chat/chat_stress_client.dart ('k') | samples/dartcombat/dartcombat.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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library("chat.dart"); 5 library chat;
6 #import("dart:html"); 6 import 'dart:html';
7 #import("dart:json"); 7 import 'dart:json';
8 8
9 void main() { 9 void main() {
10 new Chat().start(); 10 new Chat().start();
11 } 11 }
12 12
13 class Chat { 13 class Chat {
14 void start() { 14 void start() {
15 Document doc = window.document; 15 Document doc = window.document;
16 _joinButton = doc.query("#joinButton"); 16 _joinButton = doc.query("#joinButton");
17 _leaveButton = doc.query("#leaveButton"); 17 _leaveButton = doc.query("#leaveButton");
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 Element _chatSection; 306 Element _chatSection;
307 InputElement _messageInput; 307 InputElement _messageInput;
308 Element _messages; 308 Element _messages;
309 Element _statusText; 309 Element _statusText;
310 310
311 String _session = null; 311 String _session = null;
312 int _nextMessage = 0; 312 int _nextMessage = 0;
313 HttpRequest _pollRequest = null; 313 HttpRequest _pollRequest = null;
314 314
315 } 315 }
OLDNEW
« no previous file with comments | « samples/chat/chat_stress_client.dart ('k') | samples/dartcombat/dartcombat.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698