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

Side by Side Diff: tools/dom/templates/html/impl/impl_Text.darttemplate

Issue 16308002: Fixes for Blink roll to r151189 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 // 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 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 part of $LIBRARYNAME; 7 part of $LIBRARYNAME;
8 8
9 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC { 9 $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
10 factory $CLASSNAME(String data) => _$(CLASSNAME)FactoryProvider.create$CLASSNA ME(data);
11 $!MEMBERS 10 $!MEMBERS
12 11
13 $if DART2JS 12 $if DART2JS
14 @Creates('Null') // Set from Dart code; does not instantiate a native type. 13 @Creates('Null') // Set from Dart code; does not instantiate a native type.
15 $endif 14 $endif
16 StreamSubscription _textBinding; 15 StreamSubscription _textBinding;
17 16
18 @Experimental 17 @Experimental
19 void bind(String name, model, String path) { 18 void bind(String name, model, String path) {
20 if (name != 'text') { 19 if (name != 'text') {
(...skipping 20 matching lines...) Expand all
41 _textBinding.cancel(); 40 _textBinding.cancel();
42 _textBinding = null; 41 _textBinding = null;
43 } 42 }
44 43
45 @Experimental 44 @Experimental
46 void unbindAll() { 45 void unbindAll() {
47 unbind('text'); 46 unbind('text');
48 super.unbindAll(); 47 super.unbindAll();
49 } 48 }
50 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698