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

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

Issue 1401633002: Update Polymer from 1.1.4 -> 1.1.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dzhioev@ review Created 5 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
OLDNEW
1 1 /**
2
3 /**
4 * @demo demo/index.html 2 * @demo demo/index.html
5 * @polymerBehavior 3 * @polymerBehavior
6 */ 4 */
7 Polymer.IronControlState = { 5 Polymer.IronControlState = {
8 6
9 properties: { 7 properties: {
10 8
11 /** 9 /**
12 * If true, the element currently has focus. 10 * If true, the element currently has focus.
13 */ 11 */
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 81 }
84 }, 82 },
85 83
86 _changedControlState: function() { 84 _changedControlState: function() {
87 // _controlStateChanged is abstract, follow-on behaviors may implement it 85 // _controlStateChanged is abstract, follow-on behaviors may implement it
88 if (this._controlStateChanged) { 86 if (this._controlStateChanged) {
89 this._controlStateChanged(); 87 this._controlStateChanged();
90 } 88 }
91 } 89 }
92 90
93 }; 91 };
94
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698