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

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/generator/webui/clickcounter.dart

Issue 24480005: modify polymer sample so that deploy works as is (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 library clickcounter;
2
1 import 'package:polymer/polymer.dart'; 3 import 'package:polymer/polymer.dart';
2 4
3 @CustomTag('click-counter') 5 @CustomTag('click-counter')
4 class ClickCounter extends PolymerElement with ObservableMixin { 6 class ClickCounter extends PolymerElement with ObservableMixin {
5 @observable int count = 0; 7 @observable int count = 0;
6 8
7 void increment() { 9 void increment() {
8 count++; 10 count++;
9 } 11 }
10 } 12 }
11 13
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698