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

Side by Side Diff: pkg/template_binding/lib/src/binding_delegate.dart

Issue 132403010: big update to observe, template_binding, polymer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 template_binding.src.binding_delegate; 5 library template_binding.src.binding_delegate;
6 6
7 import 'dart:html'; 7 import 'dart:html';
8 import 'package:template_binding/template_binding.dart' show TemplateInstance; 8 import 'package:template_binding/template_binding.dart' show TemplateInstance;
9 9
10 /** 10 /**
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 PrepareInstanceModelFunction prepareInstanceModel(Element template) => null; 59 PrepareInstanceModelFunction prepareInstanceModel(Element template) => null;
60 60
61 /** 61 /**
62 * Returns a function that will be called whenever the position of an item 62 * Returns a function that will be called whenever the position of an item
63 * inside this template changes. 63 * inside this template changes.
64 */ 64 */
65 PrepareInstancePositionChangedFunction prepareInstancePositionChanged( 65 PrepareInstancePositionChangedFunction prepareInstancePositionChanged(
66 Element template) => null; 66 Element template) => null;
67 } 67 }
68 68
69 typedef PrepareBindingFunction(model, Node node); 69 typedef PrepareBindingFunction(model, Node node, bool oneTime);
70 70
71 typedef PrepareInstanceModelFunction(model); 71 typedef PrepareInstanceModelFunction(model);
72 72
73 typedef PrepareInstancePositionChangedFunction(TemplateInstance instance, 73 typedef PrepareInstancePositionChangedFunction(TemplateInstance instance,
74 int index); 74 int index);
OLDNEW
« no previous file with comments | « pkg/polymer_expressions/test/syntax_test.dart ('k') | pkg/template_binding/lib/src/element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698