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

Side by Side Diff: samples/todomvc/dart/todomvc_presenter.dart

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dartino 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 // Should become auto-generated. 5 // Should become auto-generated.
6 6
7 library todomvc_presenter; 7 library todomvc_presenter;
8 8
9 import 'todomvc_service.dart'; 9 import 'todomvc_service.dart';
10 import 'todomvc_presenter_model.dart'; 10 import 'todomvc_presenter_model.dart';
11 11
(...skipping 29 matching lines...) Expand all
41 41
42 void reset() { 42 void reset() {
43 _presentation = new Nil(); 43 _presentation = new Nil();
44 _eventManager.clear(); 44 _eventManager.clear();
45 } 45 }
46 46
47 void dispatch(int eventHandlerId) { 47 void dispatch(int eventHandlerId) {
48 _eventManager.call(eventHandlerId); 48 _eventManager.call(eventHandlerId);
49 } 49 }
50 } 50 }
OLDNEW
« no previous file with comments | « samples/todomvc/dart/presentation_graph.dart ('k') | samples/todomvc/dart/todomvc_presenter_model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698