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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/polymer/polymer-extracted.js

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake Created 5 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
OLDNEW
1 Polymer.nar = []; 1 Polymer.nar = [];
2 2
3 Polymer.Annotations = { 3 Polymer.Annotations = {
4 parseAnnotations: function(template) { 4 parseAnnotations: function(template) {
5 var list = []; 5 var list = [];
6 var content = template._content || template.content; 6 var content = template._content || template.content;
7 this._parseNodeAnnotations(content, list); 7 this._parseNodeAnnotations(content, list);
8 return list; 8 return list;
9 }, 9 },
10 _parseNodeAnnotations: function(node, list) { 10 _parseNodeAnnotations: function(node, list) {
(...skipping 3741 matching lines...) Expand 10 before | Expand all | Expand 10 after
3752 Polymer.Base._initFeatures.call(this); 3752 Polymer.Base._initFeatures.call(this);
3753 this._children = Array.prototype.slice.call(this.root.childNodes); 3753 this._children = Array.prototype.slice.call(this.root.childNodes);
3754 } 3754 }
3755 this._insertChildren(); 3755 this._insertChildren();
3756 this.fire("dom-change"); 3756 this.fire("dom-change");
3757 }, 3757 },
3758 detached: function() { 3758 detached: function() {
3759 this._removeChildren(); 3759 this._removeChildren();
3760 } 3760 }
3761 }); 3761 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698