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

Side by Side Diff: third_party/polymer/v0_8/components-chromium/iron-behaviors/iron-control-state-extracted.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 1
2 2
3 /** @polymerBehavior */ 3 /** @polymerBehavior */
4 4
5 Polymer.IronControlState = { 5 Polymer.IronControlState = {
6 6
7 properties: { 7 properties: {
8 8
9 /** 9 /**
10 * If true, the element currently has focus. 10 * If true, the element currently has focus.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 _changedControlState: function() { 81 _changedControlState: function() {
82 // _controlStateChanged is abstract, follow-on behaviors may implement it 82 // _controlStateChanged is abstract, follow-on behaviors may implement it
83 if (this._controlStateChanged) { 83 if (this._controlStateChanged) {
84 this._controlStateChanged(); 84 this._controlStateChanged();
85 } 85 }
86 } 86 }
87 87
88 }; 88 };
89 89
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698