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

Side by Side Diff: chrome/browser/resources/md_downloads/crisper.js

Issue 2650303003: MD Downloads: convert <paper-dropdown-menu> to <dialog is="cr-action-menu"> (Closed)
Patch Set: browser test fixes Created 3 years, 11 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 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 function assert(condition,opt_message){if(!condition){var message="Assertion fai led";if(opt_message)message=message+": "+opt_message;var error=new Error(message );var global=function(){return this}();if(global.traceAssertionsForTesting)conso le.warn(error.stack);throw error}return condition}function assertNotReached(opt_ message){assert(false,opt_message||"Unreachable code hit")}function assertInstan ceof(value,type,opt_message){if(!(value instanceof type)){assertNotReached(opt_m essage||"Value "+value+" is not a[n] "+(type.name||typeof type))}return value} 4 function assert(condition,opt_message){if(!condition){var message="Assertion fai led";if(opt_message)message=message+": "+opt_message;var error=new Error(message );var global=function(){return this}();if(global.traceAssertionsForTesting)conso le.warn(error.stack);throw error}return condition}function assertNotReached(opt_ message){assert(false,opt_message||"Unreachable code hit")}function assertInstan ceof(value,type,opt_message){if(!(value instanceof type)){assertNotReached(opt_m essage||"Value "+value+" is not a[n] "+(type.name||typeof type))}return value}
5 // Copyright 2016 The Chromium Authors. All rights reserved. 5 // Copyright 2016 The Chromium Authors. All rights reserved.
6 // Use of this source code is governed by a BSD-style license that can be 6 // Use of this source code is governed by a BSD-style license that can be
7 // found in the LICENSE file. 7 // found in the LICENSE file.
8 function PromiseResolver(){this.resolve_;this.reject_;this.promise_=new Promise( function(resolve,reject){this.resolve_=resolve;this.reject_=reject}.bind(this))} PromiseResolver.prototype={get promise(){return this.promise_},set promise(p){as sertNotReached()},get resolve(){return this.resolve_},set resolve(r){assertNotRe ached()},get reject(){return this.reject_},set reject(s){assertNotReached()}}; 8 function PromiseResolver(){this.resolve_;this.reject_;this.promise_=new Promise( function(resolve,reject){this.resolve_=resolve;this.reject_=reject}.bind(this))} PromiseResolver.prototype={get promise(){return this.promise_},set promise(p){as sertNotReached()},get resolve(){return this.resolve_},set resolve(r){assertNotRe ached()},get reject(){return this.reject_},set reject(s){assertNotReached()}};
9 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 9 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
10 // Use of this source code is governed by a BSD-style license that can be 10 // Use of this source code is governed by a BSD-style license that can be
(...skipping 25 matching lines...) Expand all
36 // Use of this source code is governed by a BSD-style license that can be 36 // Use of this source code is governed by a BSD-style license that can be
37 // found in the LICENSE file. 37 // found in the LICENSE file.
38 cr.define("downloads",function(){var DangerType={NOT_DANGEROUS:"NOT_DANGEROUS",D ANGEROUS_FILE:"DANGEROUS_FILE",DANGEROUS_URL:"DANGEROUS_URL",DANGEROUS_CONTENT:" DANGEROUS_CONTENT",UNCOMMON_CONTENT:"UNCOMMON_CONTENT",DANGEROUS_HOST:"DANGEROUS _HOST",POTENTIALLY_UNWANTED:"POTENTIALLY_UNWANTED"};var States={IN_PROGRESS:"IN_ PROGRESS",CANCELLED:"CANCELLED",COMPLETE:"COMPLETE",PAUSED:"PAUSED",DANGEROUS:"D ANGEROUS",INTERRUPTED:"INTERRUPTED"};return{DangerType:DangerType,States:States} }); 38 cr.define("downloads",function(){var DangerType={NOT_DANGEROUS:"NOT_DANGEROUS",D ANGEROUS_FILE:"DANGEROUS_FILE",DANGEROUS_URL:"DANGEROUS_URL",DANGEROUS_CONTENT:" DANGEROUS_CONTENT",UNCOMMON_CONTENT:"UNCOMMON_CONTENT",DANGEROUS_HOST:"DANGEROUS _HOST",POTENTIALLY_UNWANTED:"POTENTIALLY_UNWANTED"};var States={IN_PROGRESS:"IN_ PROGRESS",CANCELLED:"CANCELLED",COMPLETE:"COMPLETE",PAUSED:"PAUSED",DANGEROUS:"D ANGEROUS",INTERRUPTED:"INTERRUPTED"};return{DangerType:DangerType,States:States} });
39 // Copyright 2014 The Chromium Authors. All rights reserved. 39 // Copyright 2014 The Chromium Authors. All rights reserved.
40 // Use of this source code is governed by a BSD-style license that can be 40 // Use of this source code is governed by a BSD-style license that can be
41 // found in the LICENSE file. 41 // found in the LICENSE file.
42 var ActionLink=document.registerElement("action-link",{prototype:{__proto__:HTML AnchorElement.prototype,createdCallback:function(){this.tabIndex=this.disabled?- 1:0;if(!this.hasAttribute("role"))this.setAttribute("role","link");this.addEvent Listener("keydown",function(e){if(!this.disabled&&e.key=="Enter"&&!this.href){wi ndow.setTimeout(this.click.bind(this),0)}});function preventDefault(e){e.prevent Default()}function removePreventDefault(){document.removeEventListener("selectst art",preventDefault);document.removeEventListener("mouseup",removePreventDefault )}this.addEventListener("mousedown",function(){document.addEventListener("select start",preventDefault);document.addEventListener("mouseup",removePreventDefault) ;if(document.activeElement!=this)this.classList.add("no-outline")});this.addEven tListener("blur",function(){this.classList.remove("no-outline")})},set disabled( disabled){if(disabled)HTMLAnchorElement.prototype.setAttribute.call(this,"disabl ed","");else HTMLAnchorElement.prototype.removeAttribute.call(this,"disabled");t his.tabIndex=disabled?-1:0},get disabled(){return this.hasAttribute("disabled")} ,setAttribute:function(attr,val){if(attr.toLowerCase()=="disabled")this.disabled =true;else HTMLAnchorElement.prototype.setAttribute.apply(this,arguments)},remov eAttribute:function(attr){if(attr.toLowerCase()=="disabled")this.disabled=false; else HTMLAnchorElement.prototype.removeAttribute.apply(this,arguments)}},"extend s":"a"});(function(){var metaDatas={};var metaArrays={};var singleton=null;Polym er.IronMeta=Polymer({is:"iron-meta",properties:{type:{type:String,value:"default ",observer:"_typeChanged"},key:{type:String,observer:"_keyChanged"},value:{type: Object,notify:true,observer:"_valueChanged"},self:{type:Boolean,observer:"_selfC hanged"},list:{type:Array,notify:true}},hostAttributes:{hidden:true},factoryImpl :function(config){if(config){for(var n in config){switch(n){case"type":case"key" :case"value":this[n]=config[n];break}}}},created:function(){this._metaDatas=meta Datas;this._metaArrays=metaArrays},_keyChanged:function(key,old){this._resetRegi stration(old)},_valueChanged:function(value){this._resetRegistration(this.key)}, _selfChanged:function(self){if(self){this.value=this}},_typeChanged:function(typ e){this._unregisterKey(this.key);if(!metaDatas[type]){metaDatas[type]={}}this._m etaData=metaDatas[type];if(!metaArrays[type]){metaArrays[type]=[]}this.list=meta Arrays[type];this._registerKeyValue(this.key,this.value)},byKey:function(key){re turn this._metaData&&this._metaData[key]},_resetRegistration:function(oldKey){th is._unregisterKey(oldKey);this._registerKeyValue(this.key,this.value)},_unregist erKey:function(key){this._unregister(key,this._metaData,this.list)},_registerKey Value:function(key,value){this._register(key,value,this._metaData,this.list)},_r egister:function(key,value,data,list){if(key&&data&&value!==undefined){data[key] =value;list.push(value)}},_unregister:function(key,data,list){if(key&&data){if(k ey in data){var value=data[key];delete data[key];this.arrayDelete(list,value)}}} });Polymer.IronMeta.getIronMeta=function getIronMeta(){if(singleton===null){sing leton=new Polymer.IronMeta}return singleton};Polymer.IronMetaQuery=Polymer({is:" iron-meta-query",properties:{type:{type:String,value:"default",observer:"_typeCh anged"},key:{type:String,observer:"_keyChanged"},value:{type:Object,notify:true, readOnly:true},list:{type:Array,notify:true}},factoryImpl:function(config){if(co nfig){for(var n in config){switch(n){case"type":case"key":this[n]=config[n];brea k}}}},created:function(){this._metaDatas=metaDatas;this._metaArrays=metaArrays}, _keyChanged:function(key){this._setValue(this._metaData&&this._metaData[key])},_ typeChanged:function(type){this._metaData=metaDatas[type];this.list=metaArrays[t ype];if(this.key){this._keyChanged(this.key)}},byKey:function(key){return this._ metaData&&this._metaData[key]}})})();Polymer({is:"iron-icon",properties:{icon:{t ype:String,observer:"_iconChanged"},theme:{type:String,observer:"_updateIcon"},s rc:{type:String,observer:"_srcChanged"},_meta:{value:Polymer.Base.create("iron-m eta",{type:"iconset"}),observer:"_updateIcon"}},_DEFAULT_ICONSET:"icons",_iconCh anged:function(icon){var parts=(icon||"").split(":");this._iconName=parts.pop(); this._iconsetName=parts.pop()||this._DEFAULT_ICONSET;this._updateIcon()},_srcCha nged:function(src){this._updateIcon()},_usesIconset:function(){return this.icon| |!this.src},_updateIcon:function(){if(this._usesIconset()){if(this._img&&this._i mg.parentNode){Polymer.dom(this.root).removeChild(this._img)}if(this._iconName== =""){if(this._iconset){this._iconset.removeIcon(this)}}else if(this._iconsetName &&this._meta){this._iconset=this._meta.byKey(this._iconsetName);if(this._iconset ){this._iconset.applyIcon(this,this._iconName,this.theme);this.unlisten(window," iron-iconset-added","_updateIcon")}else{this.listen(window,"iron-iconset-added", "_updateIcon")}}}else{if(this._iconset){this._iconset.removeIcon(this)}if(!this. _img){this._img=document.createElement("img");this._img.style.width="100%";this. _img.style.height="100%";this._img.draggable=false}this._img.src=this.src;Polyme r.dom(this.root).appendChild(this._img)}}});Polymer.IronControlState={properties :{focused:{type:Boolean,value:false,notify:true,readOnly:true,reflectToAttribute :true},disabled:{type:Boolean,value:false,notify:true,observer:"_disabledChanged ",reflectToAttribute:true},_oldTabIndex:{type:Number},_boundFocusBlurHandler:{ty pe:Function,value:function(){return this._focusBlurHandler.bind(this)}}},observe rs:["_changedControlState(focused, disabled)"],ready:function(){this.addEventLis tener("focus",this._boundFocusBlurHandler,true);this.addEventListener("blur",thi s._boundFocusBlurHandler,true)},_focusBlurHandler:function(event){if(event.targe t===this){this._setFocused(event.type==="focus")}else if(!this.shadowRoot){var t arget=Polymer.dom(event).localTarget;if(!this.isLightDescendant(target)){this.fi re(event.type,{sourceEvent:event},{node:this,bubbles:event.bubbles,cancelable:ev ent.cancelable})}}},_disabledChanged:function(disabled,old){this.setAttribute("a ria-disabled",disabled?"true":"false");this.style.pointerEvents=disabled?"none": "";if(disabled){this._oldTabIndex=this.tabIndex;this._setFocused(false);this.tab Index=-1;this.blur()}else if(this._oldTabIndex!==undefined){this.tabIndex=this._ oldTabIndex}},_changedControlState:function(){if(this._controlStateChanged){this ._controlStateChanged()}}};Polymer.IronButtonStateImpl={properties:{pressed:{typ e:Boolean,readOnly:true,value:false,reflectToAttribute:true,observer:"_pressedCh anged"},toggles:{type:Boolean,value:false,reflectToAttribute:true},active:{type: Boolean,value:false,notify:true,reflectToAttribute:true},pointerDown:{type:Boole an,readOnly:true,value:false},receivedFocusFromKeyboard:{type:Boolean,readOnly:t rue},ariaActiveAttribute:{type:String,value:"aria-pressed",observer:"_ariaActive AttributeChanged"}},listeners:{down:"_downHandler",up:"_upHandler",tap:"_tapHand ler"},observers:["_detectKeyboardFocus(focused)","_activeChanged(active, ariaAct iveAttribute)"],keyBindings:{"enter:keydown":"_asyncClick","space:keydown":"_spa ceKeyDownHandler","space:keyup":"_spaceKeyUpHandler"},_mouseEventRe:/^mouse/,_ta pHandler:function(){if(this.toggles){this._userActivate(!this.active)}else{this. active=false}},_detectKeyboardFocus:function(focused){this._setReceivedFocusFrom Keyboard(!this.pointerDown&&focused)},_userActivate:function(active){if(this.act ive!==active){this.active=active;this.fire("change")}},_downHandler:function(eve nt){this._setPointerDown(true);this._setPressed(true);this._setReceivedFocusFrom Keyboard(false)},_upHandler:function(){this._setPointerDown(false);this._setPres sed(false)},_spaceKeyDownHandler:function(event){var keyboardEvent=event.detail. keyboardEvent;var target=Polymer.dom(keyboardEvent).localTarget;if(this.isLightD escendant(target))return;keyboardEvent.preventDefault();keyboardEvent.stopImmedi atePropagation();this._setPressed(true)},_spaceKeyUpHandler:function(event){var keyboardEvent=event.detail.keyboardEvent;var target=Polymer.dom(keyboardEvent).l ocalTarget;if(this.isLightDescendant(target))return;if(this.pressed){this._async Click()}this._setPressed(false)},_asyncClick:function(){this.async(function(){th is.click()},1)},_pressedChanged:function(pressed){this._changedButtonState()},_a riaActiveAttributeChanged:function(value,oldValue){if(oldValue&&oldValue!=value& &this.hasAttribute(oldValue)){this.removeAttribute(oldValue)}},_activeChanged:fu nction(active,ariaActiveAttribute){if(this.toggles){this.setAttribute(this.ariaA ctiveAttribute,active?"true":"false")}else{this.removeAttribute(this.ariaActiveA ttribute)}this._changedButtonState()},_controlStateChanged:function(){if(this.di sabled){this._setPressed(false)}else{this._changedButtonState()}},_changedButton State:function(){if(this._buttonStateChanged){this._buttonStateChanged()}}};Poly mer.IronButtonState=[Polymer.IronA11yKeysBehavior,Polymer.IronButtonStateImpl];( function(){var Utility={distance:function(x1,y1,x2,y2){var xDelta=x1-x2;var yDel ta=y1-y2;return Math.sqrt(xDelta*xDelta+yDelta*yDelta)},now:window.performance&& window.performance.now?window.performance.now.bind(window.performance):Date.now} ;function ElementMetrics(element){this.element=element;this.width=this.boundingR ect.width;this.height=this.boundingRect.height;this.size=Math.max(this.width,thi s.height)}ElementMetrics.prototype={get boundingRect(){return this.element.getBo undingClientRect()},furthestCornerDistanceFrom:function(x,y){var topLeft=Utility .distance(x,y,0,0);var topRight=Utility.distance(x,y,this.width,0);var bottomLef t=Utility.distance(x,y,0,this.height);var bottomRight=Utility.distance(x,y,this. width,this.height);return Math.max(topLeft,topRight,bottomLeft,bottomRight)}};fu nction Ripple(element){this.element=element;this.color=window.getComputedStyle(e lement).color;this.wave=document.createElement("div");this.waveContainer=documen t.createElement("div");this.wave.style.backgroundColor=this.color;this.wave.clas sList.add("wave");this.waveContainer.classList.add("wave-container");Polymer.dom (this.waveContainer).appendChild(this.wave);this.resetInteractionState()}Ripple. MAX_RADIUS=300;Ripple.prototype={get recenters(){return this.element.recenters}, get center(){return this.element.center},get mouseDownElapsed(){var elapsed;if(! this.mouseDownStart){return 0}elapsed=Utility.now()-this.mouseDownStart;if(this. mouseUpStart){elapsed-=this.mouseUpElapsed}return elapsed},get mouseUpElapsed(){ return this.mouseUpStart?Utility.now()-this.mouseUpStart:0},get mouseDownElapsed Seconds(){return this.mouseDownElapsed/1e3},get mouseUpElapsedSeconds(){return t his.mouseUpElapsed/1e3},get mouseInteractionSeconds(){return this.mouseDownElaps edSeconds+this.mouseUpElapsedSeconds},get initialOpacity(){return this.element.i nitialOpacity},get opacityDecayVelocity(){return this.element.opacityDecayVeloci ty},get radius(){var width2=this.containerMetrics.width*this.containerMetrics.wi dth;var height2=this.containerMetrics.height*this.containerMetrics.height;var wa veRadius=Math.min(Math.sqrt(width2+height2),Ripple.MAX_RADIUS)*1.1+5;var duratio n=1.1-.2*(waveRadius/Ripple.MAX_RADIUS);var timeNow=this.mouseInteractionSeconds /duration;var size=waveRadius*(1-Math.pow(80,-timeNow));return Math.abs(size)},g et opacity(){if(!this.mouseUpStart){return this.initialOpacity}return Math.max(0 ,this.initialOpacity-this.mouseUpElapsedSeconds*this.opacityDecayVelocity)},get outerOpacity(){var outerOpacity=this.mouseUpElapsedSeconds*.3;var waveOpacity=th is.opacity;return Math.max(0,Math.min(outerOpacity,waveOpacity))},get isOpacityF ullyDecayed(){return this.opacity<.01&&this.radius>=Math.min(this.maxRadius,Ripp le.MAX_RADIUS)},get isRestingAtMaxRadius(){return this.opacity>=this.initialOpac ity&&this.radius>=Math.min(this.maxRadius,Ripple.MAX_RADIUS)},get isAnimationCom plete(){return this.mouseUpStart?this.isOpacityFullyDecayed:this.isRestingAtMaxR adius},get translationFraction(){return Math.min(1,this.radius/this.containerMet rics.size*2/Math.sqrt(2))},get xNow(){if(this.xEnd){return this.xStart+this.tran slationFraction*(this.xEnd-this.xStart)}return this.xStart},get yNow(){if(this.y End){return this.yStart+this.translationFraction*(this.yEnd-this.yStart)}return this.yStart},get isMouseDown(){return this.mouseDownStart&&!this.mouseUpStart},r esetInteractionState:function(){this.maxRadius=0;this.mouseDownStart=0;this.mous eUpStart=0;this.xStart=0;this.yStart=0;this.xEnd=0;this.yEnd=0;this.slideDistanc e=0;this.containerMetrics=new ElementMetrics(this.element)},draw:function(){var scale;var translateString;var dx;var dy;this.wave.style.opacity=this.opacity;sca le=this.radius/(this.containerMetrics.size/2);dx=this.xNow-this.containerMetrics .width/2;dy=this.yNow-this.containerMetrics.height/2;this.waveContainer.style.we bkitTransform="translate("+dx+"px, "+dy+"px)";this.waveContainer.style.transform ="translate3d("+dx+"px, "+dy+"px, 0)";this.wave.style.webkitTransform="scale("+s cale+","+scale+")";this.wave.style.transform="scale3d("+scale+","+scale+",1)"},d ownAction:function(event){var xCenter=this.containerMetrics.width/2;var yCenter= this.containerMetrics.height/2;this.resetInteractionState();this.mouseDownStart= Utility.now();if(this.center){this.xStart=xCenter;this.yStart=yCenter;this.slide Distance=Utility.distance(this.xStart,this.yStart,this.xEnd,this.yEnd)}else{this .xStart=event?event.detail.x-this.containerMetrics.boundingRect.left:this.contai nerMetrics.width/2;this.yStart=event?event.detail.y-this.containerMetrics.boundi ngRect.top:this.containerMetrics.height/2}if(this.recenters){this.xEnd=xCenter;t his.yEnd=yCenter;this.slideDistance=Utility.distance(this.xStart,this.yStart,thi s.xEnd,this.yEnd)}this.maxRadius=this.containerMetrics.furthestCornerDistanceFro m(this.xStart,this.yStart);this.waveContainer.style.top=(this.containerMetrics.h eight-this.containerMetrics.size)/2+"px";this.waveContainer.style.left=(this.con tainerMetrics.width-this.containerMetrics.size)/2+"px";this.waveContainer.style. width=this.containerMetrics.size+"px";this.waveContainer.style.height=this.conta inerMetrics.size+"px"},upAction:function(event){if(!this.isMouseDown){return}thi s.mouseUpStart=Utility.now()},remove:function(){Polymer.dom(this.waveContainer.p arentNode).removeChild(this.waveContainer)}};Polymer({is:"paper-ripple",behavior s:[Polymer.IronA11yKeysBehavior],properties:{initialOpacity:{type:Number,value:. 25},opacityDecayVelocity:{type:Number,value:.8},recenters:{type:Boolean,value:fa lse},center:{type:Boolean,value:false},ripples:{type:Array,value:function(){retu rn[]}},animating:{type:Boolean,readOnly:true,reflectToAttribute:true,value:false },holdDown:{type:Boolean,value:false,observer:"_holdDownChanged"},noink:{type:Bo olean,value:false},_animating:{type:Boolean},_boundAnimate:{type:Function,value: function(){return this.animate.bind(this)}}},get target(){return this.keyEventTa rget},keyBindings:{"enter:keydown":"_onEnterKeydown","space:keydown":"_onSpaceKe ydown","space:keyup":"_onSpaceKeyup"},attached:function(){if(this.parentNode.nod eType==11){this.keyEventTarget=Polymer.dom(this).getOwnerRoot().host}else{this.k eyEventTarget=this.parentNode}var keyEventTarget=this.keyEventTarget;this.listen (keyEventTarget,"up","uiUpAction");this.listen(keyEventTarget,"down","uiDownActi on")},detached:function(){this.unlisten(this.keyEventTarget,"up","uiUpAction");t his.unlisten(this.keyEventTarget,"down","uiDownAction");this.keyEventTarget=null },get shouldKeepAnimating(){for(var index=0;index<this.ripples.length;++index){i f(!this.ripples[index].isAnimationComplete){return true}}return false},simulated Ripple:function(){this.downAction(null);this.async(function(){this.upAction()},1 )},uiDownAction:function(event){if(!this.noink){this.downAction(event)}},downAct ion:function(event){if(this.holdDown&&this.ripples.length>0){return}var ripple=t his.addRipple();ripple.downAction(event);if(!this._animating){this._animating=tr ue;this.animate()}},uiUpAction:function(event){if(!this.noink){this.upAction(eve nt)}},upAction:function(event){if(this.holdDown){return}this.ripples.forEach(fun ction(ripple){ripple.upAction(event)});this._animating=true;this.animate()},onAn imationComplete:function(){this._animating=false;this.$.background.style.backgro undColor=null;this.fire("transitionend")},addRipple:function(){var ripple=new Ri pple(this);Polymer.dom(this.$.waves).appendChild(ripple.waveContainer);this.$.ba ckground.style.backgroundColor=ripple.color;this.ripples.push(ripple);this._setA nimating(true);return ripple},removeRipple:function(ripple){var rippleIndex=this .ripples.indexOf(ripple);if(rippleIndex<0){return}this.ripples.splice(rippleInde x,1);ripple.remove();if(!this.ripples.length){this._setAnimating(false)}},animat e:function(){if(!this._animating){return}var index;var ripple;for(index=0;index< this.ripples.length;++index){ripple=this.ripples[index];ripple.draw();this.$.bac kground.style.opacity=ripple.outerOpacity;if(ripple.isOpacityFullyDecayed&&!ripp le.isRestingAtMaxRadius){this.removeRipple(ripple)}}if(!this.shouldKeepAnimating &&this.ripples.length===0){this.onAnimationComplete()}else{window.requestAnimati onFrame(this._boundAnimate)}},_onEnterKeydown:function(){this.uiDownAction();thi s.async(this.uiUpAction,1)},_onSpaceKeydown:function(){this.uiDownAction()},_onS paceKeyup:function(){this.uiUpAction()},_holdDownChanged:function(newVal,oldVal) {if(oldVal===undefined){return}if(newVal){this.downAction()}else{this.upAction() }}})})();Polymer.PaperRippleBehavior={properties:{noink:{type:Boolean,observer:" _noinkChanged"},_rippleContainer:{type:Object}},_buttonStateChanged:function(){i f(this.focused){this.ensureRipple()}},_downHandler:function(event){Polymer.IronB uttonStateImpl._downHandler.call(this,event);if(this.pressed){this.ensureRipple( event)}},ensureRipple:function(optTriggeringEvent){if(!this.hasRipple()){this._r ipple=this._createRipple();this._ripple.noink=this.noink;var rippleContainer=thi s._rippleContainer||this.root;if(rippleContainer){Polymer.dom(rippleContainer).a ppendChild(this._ripple)}if(optTriggeringEvent){var domContainer=Polymer.dom(thi s._rippleContainer||this);var target=Polymer.dom(optTriggeringEvent).rootTarget; if(domContainer.deepContains(target)){this._ripple.uiDownAction(optTriggeringEve nt)}}}},getRipple:function(){this.ensureRipple();return this._ripple},hasRipple: function(){return Boolean(this._ripple)},_createRipple:function(){return documen t.createElement("paper-ripple")},_noinkChanged:function(noink){if(this.hasRipple ()){this._ripple.noink=noink}}};Polymer.PaperButtonBehaviorImpl={properties:{ele vation:{type:Number,reflectToAttribute:true,readOnly:true}},observers:["_calcula teElevation(focused, disabled, active, pressed, receivedFocusFromKeyboard)","_co mputeKeyboardClass(receivedFocusFromKeyboard)"],hostAttributes:{role:"button",ta bindex:"0",animated:true},_calculateElevation:function(){var e=1;if(this.disable d){e=0}else if(this.active||this.pressed){e=4}else if(this.receivedFocusFromKeyb oard){e=3}this._setElevation(e)},_computeKeyboardClass:function(receivedFocusFro mKeyboard){this.toggleClass("keyboard-focus",receivedFocusFromKeyboard)},_spaceK eyDownHandler:function(event){Polymer.IronButtonStateImpl._spaceKeyDownHandler.c all(this,event);if(this.hasRipple()&&this.getRipple().ripples.length<1){this._ri pple.uiDownAction()}},_spaceKeyUpHandler:function(event){Polymer.IronButtonState Impl._spaceKeyUpHandler.call(this,event);if(this.hasRipple()){this._ripple.uiUpA ction()}}};Polymer.PaperButtonBehavior=[Polymer.IronButtonState,Polymer.IronCont rolState,Polymer.PaperRippleBehavior,Polymer.PaperButtonBehaviorImpl];Polymer({i s:"paper-button",behaviors:[Polymer.PaperButtonBehavior],properties:{raised:{typ e:Boolean,reflectToAttribute:true,value:false,observer:"_calculateElevation"}},_ calculateElevation:function(){if(!this.raised){this._setElevation(0)}else{Polyme r.PaperButtonBehaviorImpl._calculateElevation.apply(this)}}});Polymer({is:"paper -icon-button-light","extends":"button",behaviors:[Polymer.PaperRippleBehavior],l isteners:{down:"_rippleDown",up:"_rippleUp",focus:"_rippleDown",blur:"_rippleUp" },_rippleDown:function(){this.getRipple().downAction()},_rippleUp:function(){thi s.getRipple().upAction()},ensureRipple:function(var_args){var lastRipple=this._r ipple;Polymer.PaperRippleBehavior.ensureRipple.apply(this,arguments);if(this._ri pple&&this._ripple!==lastRipple){this._ripple.center=true;this._ripple.classList .add("circle")}}});Polymer.IronRangeBehavior={properties:{value:{type:Number,val ue:0,notify:true,reflectToAttribute:true},min:{type:Number,value:0,notify:true}, max:{type:Number,value:100,notify:true},step:{type:Number,value:1,notify:true},r atio:{type:Number,value:0,readOnly:true,notify:true}},observers:["_update(value, min, max, step)"],_calcRatio:function(value){return(this._clampValue(value)-thi s.min)/(this.max-this.min)},_clampValue:function(value){return Math.min(this.max ,Math.max(this.min,this._calcStep(value)))},_calcStep:function(value){value=pars eFloat(value);if(!this.step){return value}var numSteps=Math.round((value-this.mi n)/this.step);if(this.step<1){return numSteps/(1/this.step)+this.min}else{return numSteps*this.step+this.min}},_validateValue:function(){var v=this._clampValue( this.value);this.value=this.oldValue=isNaN(v)?this.oldValue:v;return this.value! ==v},_update:function(){this._validateValue();this._setRatio(this._calcRatio(thi s.value)*100)}};Polymer({is:"paper-progress",behaviors:[Polymer.IronRangeBehavio r],properties:{secondaryProgress:{type:Number,value:0},secondaryRatio:{type:Numb er,value:0,readOnly:true},indeterminate:{type:Boolean,value:false,observer:"_tog gleIndeterminate"},disabled:{type:Boolean,value:false,reflectToAttribute:true,ob server:"_disabledChanged"}},observers:["_progressChanged(secondaryProgress, valu e, min, max)"],hostAttributes:{role:"progressbar"},_toggleIndeterminate:function (indeterminate){this.toggleClass("indeterminate",indeterminate,this.$.primaryPro gress)},_transformProgress:function(progress,ratio){var transform="scaleX("+rati o/100+")";progress.style.transform=progress.style.webkitTransform=transform},_ma inRatioChanged:function(ratio){this._transformProgress(this.$.primaryProgress,ra tio)},_progressChanged:function(secondaryProgress,value,min,max){secondaryProgre ss=this._clampValue(secondaryProgress);value=this._clampValue(value);var seconda ryRatio=this._calcRatio(secondaryProgress)*100;var mainRatio=this._calcRatio(val ue)*100;this._setSecondaryRatio(secondaryRatio);this._transformProgress(this.$.s econdaryProgress,secondaryRatio);this._transformProgress(this.$.primaryProgress, mainRatio);this.secondaryProgress=secondaryProgress;this.setAttribute("aria-valu enow",value);this.setAttribute("aria-valuemin",min);this.setAttribute("aria-valu emax",max)},_disabledChanged:function(disabled){this.setAttribute("aria-disabled ",disabled?"true":"false")},_hideSecondaryProgress:function(secondaryRatio){retu rn secondaryRatio===0}});Polymer({is:"iron-iconset-svg",properties:{name:{type:S tring,observer:"_nameChanged"},size:{type:Number,value:24},rtlMirroring:{type:Bo olean,value:false}},_targetIsRTL:function(target){if(target&&target.nodeType!==N ode.ELEMENT_NODE){target=target.host}return target&&window.getComputedStyle(targ et)["direction"]==="rtl"},attached:function(){this.style.display="none"},getIcon Names:function(){this._icons=this._createIconMap();return Object.keys(this._icon s).map(function(n){return this.name+":"+n},this)},applyIcon:function(element,ico nName){element=element.root||element;this.removeIcon(element);var svg=this._clon eIcon(iconName,this.rtlMirroring&&this._targetIsRTL(element));if(svg){var pde=Po lymer.dom(element);pde.insertBefore(svg,pde.childNodes[0]);return element._svgIc on=svg}return null},removeIcon:function(element){element=element.root||element;i f(element._svgIcon){Polymer.dom(element).removeChild(element._svgIcon);element._ svgIcon=null}},_nameChanged:function(){new Polymer.IronMeta({type:"iconset",key: this.name,value:this});this.async(function(){this.fire("iron-iconset-added",this ,{node:window})})},_createIconMap:function(){var icons=Object.create(null);Polym er.dom(this).querySelectorAll("[id]").forEach(function(icon){icons[icon.id]=icon });return icons},_cloneIcon:function(id,mirrorAllowed){this._icons=this._icons|| this._createIconMap();return this._prepareSvgClone(this._icons[id],this.size,mir rorAllowed)},_prepareSvgClone:function(sourceSvg,size,mirrorAllowed){if(sourceSv g){var content=sourceSvg.cloneNode(true),svg=document.createElementNS("http://ww w.w3.org/2000/svg","svg"),viewBox=content.getAttribute("viewBox")||"0 0 "+size+" "+size,cssText="pointer-events: none; display: block; width: 100%; height: 100% ;";if(mirrorAllowed&&content.hasAttribute("mirror-in-rtl")){cssText+="-webkit-tr ansform:scale(-1,1);transform:scale(-1,1);"}svg.setAttribute("viewBox",viewBox); svg.setAttribute("preserveAspectRatio","xMidYMid meet");svg.style.cssText=cssTex t;svg.appendChild(content).removeAttribute("id");return svg}return null}}); 42 var ActionLink=document.registerElement("action-link",{prototype:{__proto__:HTML AnchorElement.prototype,createdCallback:function(){this.tabIndex=this.disabled?- 1:0;if(!this.hasAttribute("role"))this.setAttribute("role","link");this.addEvent Listener("keydown",function(e){if(!this.disabled&&e.key=="Enter"&&!this.href){wi ndow.setTimeout(this.click.bind(this),0)}});function preventDefault(e){e.prevent Default()}function removePreventDefault(){document.removeEventListener("selectst art",preventDefault);document.removeEventListener("mouseup",removePreventDefault )}this.addEventListener("mousedown",function(){document.addEventListener("select start",preventDefault);document.addEventListener("mouseup",removePreventDefault) ;if(document.activeElement!=this)this.classList.add("no-outline")});this.addEven tListener("blur",function(){this.classList.remove("no-outline")})},set disabled( disabled){if(disabled)HTMLAnchorElement.prototype.setAttribute.call(this,"disabl ed","");else HTMLAnchorElement.prototype.removeAttribute.call(this,"disabled");t his.tabIndex=disabled?-1:0},get disabled(){return this.hasAttribute("disabled")} ,setAttribute:function(attr,val){if(attr.toLowerCase()=="disabled")this.disabled =true;else HTMLAnchorElement.prototype.setAttribute.apply(this,arguments)},remov eAttribute:function(attr){if(attr.toLowerCase()=="disabled")this.disabled=false; else HTMLAnchorElement.prototype.removeAttribute.apply(this,arguments)}},"extend s":"a"});(function(){var metaDatas={};var metaArrays={};var singleton=null;Polym er.IronMeta=Polymer({is:"iron-meta",properties:{type:{type:String,value:"default ",observer:"_typeChanged"},key:{type:String,observer:"_keyChanged"},value:{type: Object,notify:true,observer:"_valueChanged"},self:{type:Boolean,observer:"_selfC hanged"},list:{type:Array,notify:true}},hostAttributes:{hidden:true},factoryImpl :function(config){if(config){for(var n in config){switch(n){case"type":case"key" :case"value":this[n]=config[n];break}}}},created:function(){this._metaDatas=meta Datas;this._metaArrays=metaArrays},_keyChanged:function(key,old){this._resetRegi stration(old)},_valueChanged:function(value){this._resetRegistration(this.key)}, _selfChanged:function(self){if(self){this.value=this}},_typeChanged:function(typ e){this._unregisterKey(this.key);if(!metaDatas[type]){metaDatas[type]={}}this._m etaData=metaDatas[type];if(!metaArrays[type]){metaArrays[type]=[]}this.list=meta Arrays[type];this._registerKeyValue(this.key,this.value)},byKey:function(key){re turn this._metaData&&this._metaData[key]},_resetRegistration:function(oldKey){th is._unregisterKey(oldKey);this._registerKeyValue(this.key,this.value)},_unregist erKey:function(key){this._unregister(key,this._metaData,this.list)},_registerKey Value:function(key,value){this._register(key,value,this._metaData,this.list)},_r egister:function(key,value,data,list){if(key&&data&&value!==undefined){data[key] =value;list.push(value)}},_unregister:function(key,data,list){if(key&&data){if(k ey in data){var value=data[key];delete data[key];this.arrayDelete(list,value)}}} });Polymer.IronMeta.getIronMeta=function getIronMeta(){if(singleton===null){sing leton=new Polymer.IronMeta}return singleton};Polymer.IronMetaQuery=Polymer({is:" iron-meta-query",properties:{type:{type:String,value:"default",observer:"_typeCh anged"},key:{type:String,observer:"_keyChanged"},value:{type:Object,notify:true, readOnly:true},list:{type:Array,notify:true}},factoryImpl:function(config){if(co nfig){for(var n in config){switch(n){case"type":case"key":this[n]=config[n];brea k}}}},created:function(){this._metaDatas=metaDatas;this._metaArrays=metaArrays}, _keyChanged:function(key){this._setValue(this._metaData&&this._metaData[key])},_ typeChanged:function(type){this._metaData=metaDatas[type];this.list=metaArrays[t ype];if(this.key){this._keyChanged(this.key)}},byKey:function(key){return this._ metaData&&this._metaData[key]}})})();Polymer({is:"iron-icon",properties:{icon:{t ype:String,observer:"_iconChanged"},theme:{type:String,observer:"_updateIcon"},s rc:{type:String,observer:"_srcChanged"},_meta:{value:Polymer.Base.create("iron-m eta",{type:"iconset"}),observer:"_updateIcon"}},_DEFAULT_ICONSET:"icons",_iconCh anged:function(icon){var parts=(icon||"").split(":");this._iconName=parts.pop(); this._iconsetName=parts.pop()||this._DEFAULT_ICONSET;this._updateIcon()},_srcCha nged:function(src){this._updateIcon()},_usesIconset:function(){return this.icon| |!this.src},_updateIcon:function(){if(this._usesIconset()){if(this._img&&this._i mg.parentNode){Polymer.dom(this.root).removeChild(this._img)}if(this._iconName== =""){if(this._iconset){this._iconset.removeIcon(this)}}else if(this._iconsetName &&this._meta){this._iconset=this._meta.byKey(this._iconsetName);if(this._iconset ){this._iconset.applyIcon(this,this._iconName,this.theme);this.unlisten(window," iron-iconset-added","_updateIcon")}else{this.listen(window,"iron-iconset-added", "_updateIcon")}}}else{if(this._iconset){this._iconset.removeIcon(this)}if(!this. _img){this._img=document.createElement("img");this._img.style.width="100%";this. _img.style.height="100%";this._img.draggable=false}this._img.src=this.src;Polyme r.dom(this.root).appendChild(this._img)}}});Polymer.IronControlState={properties :{focused:{type:Boolean,value:false,notify:true,readOnly:true,reflectToAttribute :true},disabled:{type:Boolean,value:false,notify:true,observer:"_disabledChanged ",reflectToAttribute:true},_oldTabIndex:{type:Number},_boundFocusBlurHandler:{ty pe:Function,value:function(){return this._focusBlurHandler.bind(this)}}},observe rs:["_changedControlState(focused, disabled)"],ready:function(){this.addEventLis tener("focus",this._boundFocusBlurHandler,true);this.addEventListener("blur",thi s._boundFocusBlurHandler,true)},_focusBlurHandler:function(event){if(event.targe t===this){this._setFocused(event.type==="focus")}else if(!this.shadowRoot){var t arget=Polymer.dom(event).localTarget;if(!this.isLightDescendant(target)){this.fi re(event.type,{sourceEvent:event},{node:this,bubbles:event.bubbles,cancelable:ev ent.cancelable})}}},_disabledChanged:function(disabled,old){this.setAttribute("a ria-disabled",disabled?"true":"false");this.style.pointerEvents=disabled?"none": "";if(disabled){this._oldTabIndex=this.tabIndex;this._setFocused(false);this.tab Index=-1;this.blur()}else if(this._oldTabIndex!==undefined){this.tabIndex=this._ oldTabIndex}},_changedControlState:function(){if(this._controlStateChanged){this ._controlStateChanged()}}};Polymer.IronButtonStateImpl={properties:{pressed:{typ e:Boolean,readOnly:true,value:false,reflectToAttribute:true,observer:"_pressedCh anged"},toggles:{type:Boolean,value:false,reflectToAttribute:true},active:{type: Boolean,value:false,notify:true,reflectToAttribute:true},pointerDown:{type:Boole an,readOnly:true,value:false},receivedFocusFromKeyboard:{type:Boolean,readOnly:t rue},ariaActiveAttribute:{type:String,value:"aria-pressed",observer:"_ariaActive AttributeChanged"}},listeners:{down:"_downHandler",up:"_upHandler",tap:"_tapHand ler"},observers:["_detectKeyboardFocus(focused)","_activeChanged(active, ariaAct iveAttribute)"],keyBindings:{"enter:keydown":"_asyncClick","space:keydown":"_spa ceKeyDownHandler","space:keyup":"_spaceKeyUpHandler"},_mouseEventRe:/^mouse/,_ta pHandler:function(){if(this.toggles){this._userActivate(!this.active)}else{this. active=false}},_detectKeyboardFocus:function(focused){this._setReceivedFocusFrom Keyboard(!this.pointerDown&&focused)},_userActivate:function(active){if(this.act ive!==active){this.active=active;this.fire("change")}},_downHandler:function(eve nt){this._setPointerDown(true);this._setPressed(true);this._setReceivedFocusFrom Keyboard(false)},_upHandler:function(){this._setPointerDown(false);this._setPres sed(false)},_spaceKeyDownHandler:function(event){var keyboardEvent=event.detail. keyboardEvent;var target=Polymer.dom(keyboardEvent).localTarget;if(this.isLightD escendant(target))return;keyboardEvent.preventDefault();keyboardEvent.stopImmedi atePropagation();this._setPressed(true)},_spaceKeyUpHandler:function(event){var keyboardEvent=event.detail.keyboardEvent;var target=Polymer.dom(keyboardEvent).l ocalTarget;if(this.isLightDescendant(target))return;if(this.pressed){this._async Click()}this._setPressed(false)},_asyncClick:function(){this.async(function(){th is.click()},1)},_pressedChanged:function(pressed){this._changedButtonState()},_a riaActiveAttributeChanged:function(value,oldValue){if(oldValue&&oldValue!=value& &this.hasAttribute(oldValue)){this.removeAttribute(oldValue)}},_activeChanged:fu nction(active,ariaActiveAttribute){if(this.toggles){this.setAttribute(this.ariaA ctiveAttribute,active?"true":"false")}else{this.removeAttribute(this.ariaActiveA ttribute)}this._changedButtonState()},_controlStateChanged:function(){if(this.di sabled){this._setPressed(false)}else{this._changedButtonState()}},_changedButton State:function(){if(this._buttonStateChanged){this._buttonStateChanged()}}};Poly mer.IronButtonState=[Polymer.IronA11yKeysBehavior,Polymer.IronButtonStateImpl];( function(){var Utility={distance:function(x1,y1,x2,y2){var xDelta=x1-x2;var yDel ta=y1-y2;return Math.sqrt(xDelta*xDelta+yDelta*yDelta)},now:window.performance&& window.performance.now?window.performance.now.bind(window.performance):Date.now} ;function ElementMetrics(element){this.element=element;this.width=this.boundingR ect.width;this.height=this.boundingRect.height;this.size=Math.max(this.width,thi s.height)}ElementMetrics.prototype={get boundingRect(){return this.element.getBo undingClientRect()},furthestCornerDistanceFrom:function(x,y){var topLeft=Utility .distance(x,y,0,0);var topRight=Utility.distance(x,y,this.width,0);var bottomLef t=Utility.distance(x,y,0,this.height);var bottomRight=Utility.distance(x,y,this. width,this.height);return Math.max(topLeft,topRight,bottomLeft,bottomRight)}};fu nction Ripple(element){this.element=element;this.color=window.getComputedStyle(e lement).color;this.wave=document.createElement("div");this.waveContainer=documen t.createElement("div");this.wave.style.backgroundColor=this.color;this.wave.clas sList.add("wave");this.waveContainer.classList.add("wave-container");Polymer.dom (this.waveContainer).appendChild(this.wave);this.resetInteractionState()}Ripple. MAX_RADIUS=300;Ripple.prototype={get recenters(){return this.element.recenters}, get center(){return this.element.center},get mouseDownElapsed(){var elapsed;if(! this.mouseDownStart){return 0}elapsed=Utility.now()-this.mouseDownStart;if(this. mouseUpStart){elapsed-=this.mouseUpElapsed}return elapsed},get mouseUpElapsed(){ return this.mouseUpStart?Utility.now()-this.mouseUpStart:0},get mouseDownElapsed Seconds(){return this.mouseDownElapsed/1e3},get mouseUpElapsedSeconds(){return t his.mouseUpElapsed/1e3},get mouseInteractionSeconds(){return this.mouseDownElaps edSeconds+this.mouseUpElapsedSeconds},get initialOpacity(){return this.element.i nitialOpacity},get opacityDecayVelocity(){return this.element.opacityDecayVeloci ty},get radius(){var width2=this.containerMetrics.width*this.containerMetrics.wi dth;var height2=this.containerMetrics.height*this.containerMetrics.height;var wa veRadius=Math.min(Math.sqrt(width2+height2),Ripple.MAX_RADIUS)*1.1+5;var duratio n=1.1-.2*(waveRadius/Ripple.MAX_RADIUS);var timeNow=this.mouseInteractionSeconds /duration;var size=waveRadius*(1-Math.pow(80,-timeNow));return Math.abs(size)},g et opacity(){if(!this.mouseUpStart){return this.initialOpacity}return Math.max(0 ,this.initialOpacity-this.mouseUpElapsedSeconds*this.opacityDecayVelocity)},get outerOpacity(){var outerOpacity=this.mouseUpElapsedSeconds*.3;var waveOpacity=th is.opacity;return Math.max(0,Math.min(outerOpacity,waveOpacity))},get isOpacityF ullyDecayed(){return this.opacity<.01&&this.radius>=Math.min(this.maxRadius,Ripp le.MAX_RADIUS)},get isRestingAtMaxRadius(){return this.opacity>=this.initialOpac ity&&this.radius>=Math.min(this.maxRadius,Ripple.MAX_RADIUS)},get isAnimationCom plete(){return this.mouseUpStart?this.isOpacityFullyDecayed:this.isRestingAtMaxR adius},get translationFraction(){return Math.min(1,this.radius/this.containerMet rics.size*2/Math.sqrt(2))},get xNow(){if(this.xEnd){return this.xStart+this.tran slationFraction*(this.xEnd-this.xStart)}return this.xStart},get yNow(){if(this.y End){return this.yStart+this.translationFraction*(this.yEnd-this.yStart)}return this.yStart},get isMouseDown(){return this.mouseDownStart&&!this.mouseUpStart},r esetInteractionState:function(){this.maxRadius=0;this.mouseDownStart=0;this.mous eUpStart=0;this.xStart=0;this.yStart=0;this.xEnd=0;this.yEnd=0;this.slideDistanc e=0;this.containerMetrics=new ElementMetrics(this.element)},draw:function(){var scale;var translateString;var dx;var dy;this.wave.style.opacity=this.opacity;sca le=this.radius/(this.containerMetrics.size/2);dx=this.xNow-this.containerMetrics .width/2;dy=this.yNow-this.containerMetrics.height/2;this.waveContainer.style.we bkitTransform="translate("+dx+"px, "+dy+"px)";this.waveContainer.style.transform ="translate3d("+dx+"px, "+dy+"px, 0)";this.wave.style.webkitTransform="scale("+s cale+","+scale+")";this.wave.style.transform="scale3d("+scale+","+scale+",1)"},d ownAction:function(event){var xCenter=this.containerMetrics.width/2;var yCenter= this.containerMetrics.height/2;this.resetInteractionState();this.mouseDownStart= Utility.now();if(this.center){this.xStart=xCenter;this.yStart=yCenter;this.slide Distance=Utility.distance(this.xStart,this.yStart,this.xEnd,this.yEnd)}else{this .xStart=event?event.detail.x-this.containerMetrics.boundingRect.left:this.contai nerMetrics.width/2;this.yStart=event?event.detail.y-this.containerMetrics.boundi ngRect.top:this.containerMetrics.height/2}if(this.recenters){this.xEnd=xCenter;t his.yEnd=yCenter;this.slideDistance=Utility.distance(this.xStart,this.yStart,thi s.xEnd,this.yEnd)}this.maxRadius=this.containerMetrics.furthestCornerDistanceFro m(this.xStart,this.yStart);this.waveContainer.style.top=(this.containerMetrics.h eight-this.containerMetrics.size)/2+"px";this.waveContainer.style.left=(this.con tainerMetrics.width-this.containerMetrics.size)/2+"px";this.waveContainer.style. width=this.containerMetrics.size+"px";this.waveContainer.style.height=this.conta inerMetrics.size+"px"},upAction:function(event){if(!this.isMouseDown){return}thi s.mouseUpStart=Utility.now()},remove:function(){Polymer.dom(this.waveContainer.p arentNode).removeChild(this.waveContainer)}};Polymer({is:"paper-ripple",behavior s:[Polymer.IronA11yKeysBehavior],properties:{initialOpacity:{type:Number,value:. 25},opacityDecayVelocity:{type:Number,value:.8},recenters:{type:Boolean,value:fa lse},center:{type:Boolean,value:false},ripples:{type:Array,value:function(){retu rn[]}},animating:{type:Boolean,readOnly:true,reflectToAttribute:true,value:false },holdDown:{type:Boolean,value:false,observer:"_holdDownChanged"},noink:{type:Bo olean,value:false},_animating:{type:Boolean},_boundAnimate:{type:Function,value: function(){return this.animate.bind(this)}}},get target(){return this.keyEventTa rget},keyBindings:{"enter:keydown":"_onEnterKeydown","space:keydown":"_onSpaceKe ydown","space:keyup":"_onSpaceKeyup"},attached:function(){if(this.parentNode.nod eType==11){this.keyEventTarget=Polymer.dom(this).getOwnerRoot().host}else{this.k eyEventTarget=this.parentNode}var keyEventTarget=this.keyEventTarget;this.listen (keyEventTarget,"up","uiUpAction");this.listen(keyEventTarget,"down","uiDownActi on")},detached:function(){this.unlisten(this.keyEventTarget,"up","uiUpAction");t his.unlisten(this.keyEventTarget,"down","uiDownAction");this.keyEventTarget=null },get shouldKeepAnimating(){for(var index=0;index<this.ripples.length;++index){i f(!this.ripples[index].isAnimationComplete){return true}}return false},simulated Ripple:function(){this.downAction(null);this.async(function(){this.upAction()},1 )},uiDownAction:function(event){if(!this.noink){this.downAction(event)}},downAct ion:function(event){if(this.holdDown&&this.ripples.length>0){return}var ripple=t his.addRipple();ripple.downAction(event);if(!this._animating){this._animating=tr ue;this.animate()}},uiUpAction:function(event){if(!this.noink){this.upAction(eve nt)}},upAction:function(event){if(this.holdDown){return}this.ripples.forEach(fun ction(ripple){ripple.upAction(event)});this._animating=true;this.animate()},onAn imationComplete:function(){this._animating=false;this.$.background.style.backgro undColor=null;this.fire("transitionend")},addRipple:function(){var ripple=new Ri pple(this);Polymer.dom(this.$.waves).appendChild(ripple.waveContainer);this.$.ba ckground.style.backgroundColor=ripple.color;this.ripples.push(ripple);this._setA nimating(true);return ripple},removeRipple:function(ripple){var rippleIndex=this .ripples.indexOf(ripple);if(rippleIndex<0){return}this.ripples.splice(rippleInde x,1);ripple.remove();if(!this.ripples.length){this._setAnimating(false)}},animat e:function(){if(!this._animating){return}var index;var ripple;for(index=0;index< this.ripples.length;++index){ripple=this.ripples[index];ripple.draw();this.$.bac kground.style.opacity=ripple.outerOpacity;if(ripple.isOpacityFullyDecayed&&!ripp le.isRestingAtMaxRadius){this.removeRipple(ripple)}}if(!this.shouldKeepAnimating &&this.ripples.length===0){this.onAnimationComplete()}else{window.requestAnimati onFrame(this._boundAnimate)}},_onEnterKeydown:function(){this.uiDownAction();thi s.async(this.uiUpAction,1)},_onSpaceKeydown:function(){this.uiDownAction()},_onS paceKeyup:function(){this.uiUpAction()},_holdDownChanged:function(newVal,oldVal) {if(oldVal===undefined){return}if(newVal){this.downAction()}else{this.upAction() }}})})();Polymer.PaperRippleBehavior={properties:{noink:{type:Boolean,observer:" _noinkChanged"},_rippleContainer:{type:Object}},_buttonStateChanged:function(){i f(this.focused){this.ensureRipple()}},_downHandler:function(event){Polymer.IronB uttonStateImpl._downHandler.call(this,event);if(this.pressed){this.ensureRipple( event)}},ensureRipple:function(optTriggeringEvent){if(!this.hasRipple()){this._r ipple=this._createRipple();this._ripple.noink=this.noink;var rippleContainer=thi s._rippleContainer||this.root;if(rippleContainer){Polymer.dom(rippleContainer).a ppendChild(this._ripple)}if(optTriggeringEvent){var domContainer=Polymer.dom(thi s._rippleContainer||this);var target=Polymer.dom(optTriggeringEvent).rootTarget; if(domContainer.deepContains(target)){this._ripple.uiDownAction(optTriggeringEve nt)}}}},getRipple:function(){this.ensureRipple();return this._ripple},hasRipple: function(){return Boolean(this._ripple)},_createRipple:function(){return documen t.createElement("paper-ripple")},_noinkChanged:function(noink){if(this.hasRipple ()){this._ripple.noink=noink}}};Polymer.PaperButtonBehaviorImpl={properties:{ele vation:{type:Number,reflectToAttribute:true,readOnly:true}},observers:["_calcula teElevation(focused, disabled, active, pressed, receivedFocusFromKeyboard)","_co mputeKeyboardClass(receivedFocusFromKeyboard)"],hostAttributes:{role:"button",ta bindex:"0",animated:true},_calculateElevation:function(){var e=1;if(this.disable d){e=0}else if(this.active||this.pressed){e=4}else if(this.receivedFocusFromKeyb oard){e=3}this._setElevation(e)},_computeKeyboardClass:function(receivedFocusFro mKeyboard){this.toggleClass("keyboard-focus",receivedFocusFromKeyboard)},_spaceK eyDownHandler:function(event){Polymer.IronButtonStateImpl._spaceKeyDownHandler.c all(this,event);if(this.hasRipple()&&this.getRipple().ripples.length<1){this._ri pple.uiDownAction()}},_spaceKeyUpHandler:function(event){Polymer.IronButtonState Impl._spaceKeyUpHandler.call(this,event);if(this.hasRipple()){this._ripple.uiUpA ction()}}};Polymer.PaperButtonBehavior=[Polymer.IronButtonState,Polymer.IronCont rolState,Polymer.PaperRippleBehavior,Polymer.PaperButtonBehaviorImpl];Polymer({i s:"paper-button",behaviors:[Polymer.PaperButtonBehavior],properties:{raised:{typ e:Boolean,reflectToAttribute:true,value:false,observer:"_calculateElevation"}},_ calculateElevation:function(){if(!this.raised){this._setElevation(0)}else{Polyme r.PaperButtonBehaviorImpl._calculateElevation.apply(this)}}});Polymer({is:"paper -icon-button-light","extends":"button",behaviors:[Polymer.PaperRippleBehavior],l isteners:{down:"_rippleDown",up:"_rippleUp",focus:"_rippleDown",blur:"_rippleUp" },_rippleDown:function(){this.getRipple().downAction()},_rippleUp:function(){thi s.getRipple().upAction()},ensureRipple:function(var_args){var lastRipple=this._r ipple;Polymer.PaperRippleBehavior.ensureRipple.apply(this,arguments);if(this._ri pple&&this._ripple!==lastRipple){this._ripple.center=true;this._ripple.classList .add("circle")}}});Polymer.IronRangeBehavior={properties:{value:{type:Number,val ue:0,notify:true,reflectToAttribute:true},min:{type:Number,value:0,notify:true}, max:{type:Number,value:100,notify:true},step:{type:Number,value:1,notify:true},r atio:{type:Number,value:0,readOnly:true,notify:true}},observers:["_update(value, min, max, step)"],_calcRatio:function(value){return(this._clampValue(value)-thi s.min)/(this.max-this.min)},_clampValue:function(value){return Math.min(this.max ,Math.max(this.min,this._calcStep(value)))},_calcStep:function(value){value=pars eFloat(value);if(!this.step){return value}var numSteps=Math.round((value-this.mi n)/this.step);if(this.step<1){return numSteps/(1/this.step)+this.min}else{return numSteps*this.step+this.min}},_validateValue:function(){var v=this._clampValue( this.value);this.value=this.oldValue=isNaN(v)?this.oldValue:v;return this.value! ==v},_update:function(){this._validateValue();this._setRatio(this._calcRatio(thi s.value)*100)}};Polymer({is:"paper-progress",behaviors:[Polymer.IronRangeBehavio r],properties:{secondaryProgress:{type:Number,value:0},secondaryRatio:{type:Numb er,value:0,readOnly:true},indeterminate:{type:Boolean,value:false,observer:"_tog gleIndeterminate"},disabled:{type:Boolean,value:false,reflectToAttribute:true,ob server:"_disabledChanged"}},observers:["_progressChanged(secondaryProgress, valu e, min, max)"],hostAttributes:{role:"progressbar"},_toggleIndeterminate:function (indeterminate){this.toggleClass("indeterminate",indeterminate,this.$.primaryPro gress)},_transformProgress:function(progress,ratio){var transform="scaleX("+rati o/100+")";progress.style.transform=progress.style.webkitTransform=transform},_ma inRatioChanged:function(ratio){this._transformProgress(this.$.primaryProgress,ra tio)},_progressChanged:function(secondaryProgress,value,min,max){secondaryProgre ss=this._clampValue(secondaryProgress);value=this._clampValue(value);var seconda ryRatio=this._calcRatio(secondaryProgress)*100;var mainRatio=this._calcRatio(val ue)*100;this._setSecondaryRatio(secondaryRatio);this._transformProgress(this.$.s econdaryProgress,secondaryRatio);this._transformProgress(this.$.primaryProgress, mainRatio);this.secondaryProgress=secondaryProgress;this.setAttribute("aria-valu enow",value);this.setAttribute("aria-valuemin",min);this.setAttribute("aria-valu emax",max)},_disabledChanged:function(disabled){this.setAttribute("aria-disabled ",disabled?"true":"false")},_hideSecondaryProgress:function(secondaryRatio){retu rn secondaryRatio===0}});Polymer({is:"iron-iconset-svg",properties:{name:{type:S tring,observer:"_nameChanged"},size:{type:Number,value:24},rtlMirroring:{type:Bo olean,value:false}},_targetIsRTL:function(target){if(target&&target.nodeType!==N ode.ELEMENT_NODE){target=target.host}return target&&window.getComputedStyle(targ et)["direction"]==="rtl"},attached:function(){this.style.display="none"},getIcon Names:function(){this._icons=this._createIconMap();return Object.keys(this._icon s).map(function(n){return this.name+":"+n},this)},applyIcon:function(element,ico nName){element=element.root||element;this.removeIcon(element);var svg=this._clon eIcon(iconName,this.rtlMirroring&&this._targetIsRTL(element));if(svg){var pde=Po lymer.dom(element);pde.insertBefore(svg,pde.childNodes[0]);return element._svgIc on=svg}return null},removeIcon:function(element){element=element.root||element;i f(element._svgIcon){Polymer.dom(element).removeChild(element._svgIcon);element._ svgIcon=null}},_nameChanged:function(){new Polymer.IronMeta({type:"iconset",key: this.name,value:this});this.async(function(){this.fire("iron-iconset-added",this ,{node:window})})},_createIconMap:function(){var icons=Object.create(null);Polym er.dom(this).querySelectorAll("[id]").forEach(function(icon){icons[icon.id]=icon });return icons},_cloneIcon:function(id,mirrorAllowed){this._icons=this._icons|| this._createIconMap();return this._prepareSvgClone(this._icons[id],this.size,mir rorAllowed)},_prepareSvgClone:function(sourceSvg,size,mirrorAllowed){if(sourceSv g){var content=sourceSvg.cloneNode(true),svg=document.createElementNS("http://ww w.w3.org/2000/svg","svg"),viewBox=content.getAttribute("viewBox")||"0 0 "+size+" "+size,cssText="pointer-events: none; display: block; width: 100%; height: 100% ;";if(mirrorAllowed&&content.hasAttribute("mirror-in-rtl")){cssText+="-webkit-tr ansform:scale(-1,1);transform:scale(-1,1);"}svg.setAttribute("viewBox",viewBox); svg.setAttribute("preserveAspectRatio","xMidYMid meet");svg.style.cssText=cssTex t;svg.appendChild(content).removeAttribute("id");return svg}return null}});
43 // Copyright 2015 The Chromium Authors. All rights reserved. 43 // Copyright 2015 The Chromium Authors. All rights reserved.
44 // Use of this source code is governed by a BSD-style license that can be 44 // Use of this source code is governed by a BSD-style license that can be
45 // found in the LICENSE file. 45 // found in the LICENSE file.
46 cr.define("downloads",function(){var Item=Polymer({is:"downloads-item",propertie s:{data:{type:Object},completelyOnDisk_:{computed:"computeCompletelyOnDisk_("+"d ata.state, data.file_externally_removed)",type:Boolean,value:true},controlledBy_ :{computed:"computeControlledBy_(data.by_ext_id, data.by_ext_name)",type:String, value:""},isActive_:{computed:"computeIsActive_("+"data.state, data.file_externa lly_removed)",type:Boolean,value:true},isDangerous_:{computed:"computeIsDangerou s_(data.state)",type:Boolean,value:false},isMalware_:{computed:"computeIsMalware _(isDangerous_, data.danger_type)",type:Boolean,value:false},isInProgress_:{comp uted:"computeIsInProgress_(data.state)",type:Boolean,value:false},pauseOrResumeT ext_:{computed:"computePauseOrResumeText_(isInProgress_, data.resume)",type:Stri ng},showCancel_:{computed:"computeShowCancel_(data.state)",type:Boolean,value:fa lse},showProgress_:{computed:"computeShowProgress_(showCancel_, data.percent)",t ype:Boolean,value:false}},observers:["observeControlledBy_(controlledBy_)","obse rveIsDangerous_(isDangerous_, data)"],ready:function(){this.content=this.$.conte nt},chopUrl_:function(url){return url.slice(0,300)},computeClass_:function(){var classes=[];if(this.isActive_)classes.push("is-active");if(this.isDangerous_)cla sses.push("dangerous");if(this.showProgress_)classes.push("show-progress");retur n classes.join(" ")},computeCompletelyOnDisk_:function(){return this.data.state= =downloads.States.COMPLETE&&!this.data.file_externally_removed},computeControlle dBy_:function(){if(!this.data.by_ext_id||!this.data.by_ext_name)return"";var url ="chrome://extensions#"+this.data.by_ext_id;var name=this.data.by_ext_name;retur n loadTimeData.getStringF("controlledByUrl",url,HTMLEscape(name))},computeDanger Icon_:function(){return this.isDangerous_?"cr:warning":""},computeDate_:function (){assert(typeof this.data.hideDate=="boolean");if(this.data.hideDate)return"";r eturn assert(this.data.since_string||this.data.date_string)},computeDescription_ :function(){var data=this.data;switch(data.state){case downloads.States.DANGEROU S:var fileName=data.file_name;switch(data.danger_type){case downloads.DangerType .DANGEROUS_FILE:return loadTimeData.getString("dangerFileDesc");case downloads.D angerType.DANGEROUS_URL:case downloads.DangerType.DANGEROUS_CONTENT:case downloa ds.DangerType.DANGEROUS_HOST:return loadTimeData.getString("dangerDownloadDesc") ;case downloads.DangerType.UNCOMMON_CONTENT:return loadTimeData.getString("dange rUncommonDesc");case downloads.DangerType.POTENTIALLY_UNWANTED:return loadTimeDa ta.getString("dangerSettingsDesc")}break;case downloads.States.IN_PROGRESS:case downloads.States.PAUSED:return data.progress_status_text}return""},computeIsActi ve_:function(){return this.data.state!=downloads.States.CANCELLED&&this.data.sta te!=downloads.States.INTERRUPTED&&!this.data.file_externally_removed},computeIsD angerous_:function(){return this.data.state==downloads.States.DANGEROUS},compute IsInProgress_:function(){return this.data.state==downloads.States.IN_PROGRESS},c omputeIsMalware_:function(){return this.isDangerous_&&(this.data.danger_type==do wnloads.DangerType.DANGEROUS_CONTENT||this.data.danger_type==downloads.DangerTyp e.DANGEROUS_HOST||this.data.danger_type==downloads.DangerType.DANGEROUS_URL||thi s.data.danger_type==downloads.DangerType.POTENTIALLY_UNWANTED)},computePauseOrRe sumeText_:function(){if(this.isInProgress_)return loadTimeData.getString("contro lPause");if(this.data.resume)return loadTimeData.getString("controlResume");retu rn""},computeRemoveStyle_:function(){var canDelete=loadTimeData.getBoolean("allo wDeletingHistory");var hideRemove=this.isDangerous_||this.showCancel_||!canDelet e;return hideRemove?"visibility: hidden":""},computeShowCancel_:function(){retur n this.data.state==downloads.States.IN_PROGRESS||this.data.state==downloads.Stat es.PAUSED},computeShowProgress_:function(){return this.showCancel_&&this.data.pe rcent>=-1},computeTag_:function(){switch(this.data.state){case downloads.States. CANCELLED:return loadTimeData.getString("statusCancelled");case downloads.States .INTERRUPTED:return this.data.last_reason_text;case downloads.States.COMPLETE:re turn this.data.file_externally_removed?loadTimeData.getString("statusRemoved"):" "}return""},isIndeterminate_:function(){return this.data.percent==-1},observeCon trolledBy_:function(){this.$["controlled-by"].innerHTML=this.controlledBy_},obse rveIsDangerous_:function(){if(!this.data)return;if(this.isDangerous_){this.$.url .removeAttribute("href")}else{this.$.url.href=assert(this.data.url);var filePath =encodeURIComponent(this.data.file_path);var scaleFactor="?scale="+window.device PixelRatio+"x";this.$["file-icon"].src="chrome://fileicon/"+filePath+scaleFactor }},onCancelTap_:function(){downloads.ActionService.getInstance().cancel(this.dat a.id)},onDiscardDangerousTap_:function(){downloads.ActionService.getInstance().d iscardDangerous(this.data.id)},onDragStart_:function(e){e.preventDefault();downl oads.ActionService.getInstance().drag(this.data.id)},onFileLinkTap_:function(e){ e.preventDefault();downloads.ActionService.getInstance().openFile(this.data.id)} ,onPauseOrResumeTap_:function(){if(this.isInProgress_)downloads.ActionService.ge tInstance().pause(this.data.id);else downloads.ActionService.getInstance().resum e(this.data.id)},onRemoveTap_:function(){downloads.ActionService.getInstance().r emove(this.data.id)},onRetryTap_:function(){downloads.ActionService.getInstance( ).download(this.data.url)},onSaveDangerousTap_:function(){downloads.ActionServic e.getInstance().saveDangerous(this.data.id)},onShowTap_:function(){downloads.Act ionService.getInstance().show(this.data.id)}});return{Item:Item}});Polymer.Paper ItemBehaviorImpl={hostAttributes:{role:"option",tabindex:"0"}};Polymer.PaperItem Behavior=[Polymer.IronButtonState,Polymer.IronControlState,Polymer.PaperItemBeha viorImpl];Polymer({is:"paper-item",behaviors:[Polymer.PaperItemBehavior]});Polym er.IronSelection=function(selectCallback){this.selection=[];this.selectCallback= selectCallback};Polymer.IronSelection.prototype={get:function(){return this.mult i?this.selection.slice():this.selection[0]},clear:function(excludes){this.select ion.slice().forEach(function(item){if(!excludes||excludes.indexOf(item)<0){this. setItemSelected(item,false)}},this)},isSelected:function(item){return this.selec tion.indexOf(item)>=0},setItemSelected:function(item,isSelected){if(item!=null){ if(isSelected!==this.isSelected(item)){if(isSelected){this.selection.push(item)} else{var i=this.selection.indexOf(item);if(i>=0){this.selection.splice(i,1)}}if( this.selectCallback){this.selectCallback(item,isSelected)}}}},select:function(it em){if(this.multi){this.toggle(item)}else if(this.get()!==item){this.setItemSele cted(this.get(),false);this.setItemSelected(item,true)}},toggle:function(item){t his.setItemSelected(item,!this.isSelected(item))}};Polymer.IronSelectableBehavio r={properties:{attrForSelected:{type:String,value:null},selected:{type:String,no tify:true},selectedItem:{type:Object,readOnly:true,notify:true},activateEvent:{t ype:String,value:"tap",observer:"_activateEventChanged"},selectable:String,selec tedClass:{type:String,value:"iron-selected"},selectedAttribute:{type:String,valu e:null},fallbackSelection:{type:String,value:null},items:{type:Array,readOnly:tr ue,notify:true,value:function(){return[]}},_excludedLocalNames:{type:Object,valu e:function(){return{template:1}}}},observers:["_updateAttrForSelected(attrForSel ected)","_updateSelected(selected)","_checkFallback(fallbackSelection)"],created :function(){this._bindFilterItem=this._filterItem.bind(this);this._selection=new Polymer.IronSelection(this._applySelection.bind(this))},attached:function(){thi s._observer=this._observeItems(this);this._updateItems();if(!this._shouldUpdateS election){this._updateSelected()}this._addListener(this.activateEvent)},detached :function(){if(this._observer){Polymer.dom(this).unobserveNodes(this._observer)} this._removeListener(this.activateEvent)},indexOf:function(item){return this.ite ms.indexOf(item)},select:function(value){this.selected=value},selectPrevious:fun ction(){var length=this.items.length;var index=(Number(this._valueToIndex(this.s elected))-1+length)%length;this.selected=this._indexToValue(index)},selectNext:f unction(){var index=(Number(this._valueToIndex(this.selected))+1)%this.items.len gth;this.selected=this._indexToValue(index)},selectIndex:function(index){this.se lect(this._indexToValue(index))},forceSynchronousItemUpdate:function(){this._upd ateItems()},get _shouldUpdateSelection(){return this.selected!=null},_checkFallb ack:function(){if(this._shouldUpdateSelection){this._updateSelected()}},_addList ener:function(eventName){this.listen(this,eventName,"_activateHandler")},_remove Listener:function(eventName){this.unlisten(this,eventName,"_activateHandler")},_ activateEventChanged:function(eventName,old){this._removeListener(old);this._add Listener(eventName)},_updateItems:function(){var nodes=Polymer.dom(this).queryDi stributedElements(this.selectable||"*");nodes=Array.prototype.filter.call(nodes, this._bindFilterItem);this._setItems(nodes)},_updateAttrForSelected:function(){i f(this._shouldUpdateSelection){this.selected=this._indexToValue(this.indexOf(thi s.selectedItem))}},_updateSelected:function(){this._selectSelected(this.selected )},_selectSelected:function(selected){this._selection.select(this._valueToItem(t his.selected));if(this.fallbackSelection&&this.items.length&&this._selection.get ()===undefined){this.selected=this.fallbackSelection}},_filterItem:function(node ){return!this._excludedLocalNames[node.localName]},_valueToItem:function(value){ return value==null?null:this.items[this._valueToIndex(value)]},_valueToIndex:fun ction(value){if(this.attrForSelected){for(var i=0,item;item=this.items[i];i++){i f(this._valueForItem(item)==value){return i}}}else{return Number(value)}},_index ToValue:function(index){if(this.attrForSelected){var item=this.items[index];if(i tem){return this._valueForItem(item)}}else{return index}},_valueForItem:function (item){var propValue=item[Polymer.CaseMap.dashToCamelCase(this.attrForSelected)] ;return propValue!=undefined?propValue:item.getAttribute(this.attrForSelected)}, _applySelection:function(item,isSelected){if(this.selectedClass){this.toggleClas s(this.selectedClass,isSelected,item)}if(this.selectedAttribute){this.toggleAttr ibute(this.selectedAttribute,isSelected,item)}this._selectionChange();this.fire( "iron-"+(isSelected?"select":"deselect"),{item:item})},_selectionChange:function (){this._setSelectedItem(this._selection.get())},_observeItems:function(node){re turn Polymer.dom(node).observeNodes(function(mutation){this._updateItems();if(th is._shouldUpdateSelection){this._updateSelected()}this.fire("iron-items-changed" ,mutation,{bubbles:false,cancelable:false})})},_activateHandler:function(e){var t=e.target;var items=this.items;while(t&&t!=this){var i=items.indexOf(t);if(i>=0 ){var value=this._indexToValue(i);this._itemActivate(value,t);return}t=t.parentN ode}},_itemActivate:function(value,item){if(!this.fire("iron-activate",{selected :value,item:item},{cancelable:true}).defaultPrevented){this.select(value)}}};Pol ymer.IronMultiSelectableBehaviorImpl={properties:{multi:{type:Boolean,value:fals e,observer:"multiChanged"},selectedValues:{type:Array,notify:true},selectedItems :{type:Array,readOnly:true,notify:true}},observers:["_updateSelected(selectedVal ues.splices)"],select:function(value){if(this.multi){if(this.selectedValues){thi s._toggleSelected(value)}else{this.selectedValues=[value]}}else{this.selected=va lue}},multiChanged:function(multi){this._selection.multi=multi},get _shouldUpdat eSelection(){return this.selected!=null||this.selectedValues!=null&&this.selecte dValues.length},_updateAttrForSelected:function(){if(!this.multi){Polymer.IronSe lectableBehavior._updateAttrForSelected.apply(this)}else if(this._shouldUpdateSe lection){this.selectedValues=this.selectedItems.map(function(selectedItem){retur n this._indexToValue(this.indexOf(selectedItem))},this).filter(function(unfilter edValue){return unfilteredValue!=null},this)}},_updateSelected:function(){if(thi s.multi){this._selectMulti(this.selectedValues)}else{this._selectSelected(this.s elected)}},_selectMulti:function(values){if(values){var selectedItems=this._valu esToItems(values);this._selection.clear(selectedItems);for(var i=0;i<selectedIte ms.length;i++){this._selection.setItemSelected(selectedItems[i],true)}if(this.fa llbackSelection&&this.items.length&&!this._selection.get().length){var fallback= this._valueToItem(this.fallbackSelection);if(fallback){this.selectedValues=[this .fallbackSelection]}}}else{this._selection.clear()}},_selectionChange:function() {var s=this._selection.get();if(this.multi){this._setSelectedItems(s)}else{this. _setSelectedItems([s]);this._setSelectedItem(s)}},_toggleSelected:function(value ){var i=this.selectedValues.indexOf(value);var unselected=i<0;if(unselected){thi s.push("selectedValues",value)}else{this.splice("selectedValues",i,1)}},_valuesT oItems:function(values){return values==null?null:values.map(function(value){retu rn this._valueToItem(value)},this)}};Polymer.IronMultiSelectableBehavior=[Polyme r.IronSelectableBehavior,Polymer.IronMultiSelectableBehaviorImpl];Polymer.IronMe nuBehaviorImpl={properties:{focusedItem:{observer:"_focusedItemChanged",readOnly :true,type:Object},attrForItemTitle:{type:String}},hostAttributes:{role:"menu",t abindex:"0"},observers:["_updateMultiselectable(multi)"],listeners:{focus:"_onFo cus",keydown:"_onKeydown","iron-items-changed":"_onIronItemsChanged"},keyBinding s:{up:"_onUpKey",down:"_onDownKey",esc:"_onEscKey","shift+tab:keydown":"_onShift TabDown"},attached:function(){this._resetTabindices()},select:function(value){if (this._defaultFocusAsync){this.cancelAsync(this._defaultFocusAsync);this._defaul tFocusAsync=null}var item=this._valueToItem(value);if(item&&item.hasAttribute("d isabled"))return;this._setFocusedItem(item);Polymer.IronMultiSelectableBehaviorI mpl.select.apply(this,arguments)},_resetTabindices:function(){var selectedItem=t his.multi?this.selectedItems&&this.selectedItems[0]:this.selectedItem;this.items .forEach(function(item){item.setAttribute("tabindex",item===selectedItem?"0":"-1 ")},this)},_updateMultiselectable:function(multi){if(multi){this.setAttribute("a ria-multiselectable","true")}else{this.removeAttribute("aria-multiselectable")}} ,_focusWithKeyboardEvent:function(event){for(var i=0,item;item=this.items[i];i++ ){var attr=this.attrForItemTitle||"textContent";var title=item[attr]||item.getAt tribute(attr);if(!item.hasAttribute("disabled")&&title&&title.trim().charAt(0).t oLowerCase()===String.fromCharCode(event.keyCode).toLowerCase()){this._setFocuse dItem(item);break}}},_focusPrevious:function(){var length=this.items.length;var curFocusIndex=Number(this.indexOf(this.focusedItem));for(var i=1;i<length+1;i++) {var item=this.items[(curFocusIndex-i+length)%length];if(!item.hasAttribute("dis abled")){var owner=Polymer.dom(item).getOwnerRoot()||document;this._setFocusedIt em(item);if(Polymer.dom(owner).activeElement==item){return}}}},_focusNext:functi on(){var length=this.items.length;var curFocusIndex=Number(this.indexOf(this.foc usedItem));for(var i=1;i<length+1;i++){var item=this.items[(curFocusIndex+i)%len gth];if(!item.hasAttribute("disabled")){var owner=Polymer.dom(item).getOwnerRoot ()||document;this._setFocusedItem(item);if(Polymer.dom(owner).activeElement==ite m){return}}}},_applySelection:function(item,isSelected){if(isSelected){item.setA ttribute("aria-selected","true")}else{item.removeAttribute("aria-selected")}Poly mer.IronSelectableBehavior._applySelection.apply(this,arguments)},_focusedItemCh anged:function(focusedItem,old){old&&old.setAttribute("tabindex","-1");if(focuse dItem){focusedItem.setAttribute("tabindex","0");focusedItem.focus()}},_onIronIte msChanged:function(event){if(event.detail.addedNodes.length){this._resetTabindic es()}},_onShiftTabDown:function(event){var oldTabIndex=this.getAttribute("tabind ex");Polymer.IronMenuBehaviorImpl._shiftTabPressed=true;this._setFocusedItem(nul l);this.setAttribute("tabindex","-1");this.async(function(){this.setAttribute("t abindex",oldTabIndex);Polymer.IronMenuBehaviorImpl._shiftTabPressed=false},1)},_ onFocus:function(event){if(Polymer.IronMenuBehaviorImpl._shiftTabPressed){return }var rootTarget=Polymer.dom(event).rootTarget;if(rootTarget!==this&&typeof rootT arget.tabIndex!=="undefined"&&!this.isLightDescendant(rootTarget)){return}this._ defaultFocusAsync=this.async(function(){var selectedItem=this.multi?this.selecte dItems&&this.selectedItems[0]:this.selectedItem;this._setFocusedItem(null);if(se lectedItem){this._setFocusedItem(selectedItem)}else if(this.items[0]){this._focu sNext()}})},_onUpKey:function(event){this._focusPrevious();event.detail.keyboard Event.preventDefault()},_onDownKey:function(event){this._focusNext();event.detai l.keyboardEvent.preventDefault()},_onEscKey:function(event){this.focusedItem.blu r()},_onKeydown:function(event){if(!this.keyboardEventMatchesKeys(event,"up down esc")){this._focusWithKeyboardEvent(event)}event.stopPropagation()},_activateHa ndler:function(event){Polymer.IronSelectableBehavior._activateHandler.call(this, event);event.stopPropagation()}};Polymer.IronMenuBehaviorImpl._shiftTabPressed=f alse;Polymer.IronMenuBehavior=[Polymer.IronMultiSelectableBehavior,Polymer.IronA 11yKeysBehavior,Polymer.IronMenuBehaviorImpl];(function(){Polymer({is:"paper-men u",behaviors:[Polymer.IronMenuBehavior]})})();Polymer.IronFitBehavior={propertie s:{sizingTarget:{type:Object,value:function(){return this}},fitInto:{type:Object ,value:window},noOverlap:{type:Boolean},positionTarget:{type:Element},horizontal Align:{type:String},verticalAlign:{type:String},dynamicAlign:{type:Boolean},hori zontalOffset:{type:Number,value:0,notify:true},verticalOffset:{type:Number,value :0,notify:true},autoFitOnAttach:{type:Boolean,value:false},_fitInfo:{type:Object }},get _fitWidth(){var fitWidth;if(this.fitInto===window){fitWidth=this.fitInto. innerWidth}else{fitWidth=this.fitInto.getBoundingClientRect().width}return fitWi dth},get _fitHeight(){var fitHeight;if(this.fitInto===window){fitHeight=this.fit Into.innerHeight}else{fitHeight=this.fitInto.getBoundingClientRect().height}retu rn fitHeight},get _fitLeft(){var fitLeft;if(this.fitInto===window){fitLeft=0}els e{fitLeft=this.fitInto.getBoundingClientRect().left}return fitLeft},get _fitTop( ){var fitTop;if(this.fitInto===window){fitTop=0}else{fitTop=this.fitInto.getBoun dingClientRect().top}return fitTop},get _defaultPositionTarget(){var parent=Poly mer.dom(this).parentNode;if(parent&&parent.nodeType===Node.DOCUMENT_FRAGMENT_NOD E){parent=parent.host}return parent},get _localeHorizontalAlign(){if(this._isRTL ){if(this.horizontalAlign==="right"){return"left"}if(this.horizontalAlign==="lef t"){return"right"}}return this.horizontalAlign},attached:function(){this._isRTL= window.getComputedStyle(this).direction=="rtl";this.positionTarget=this.position Target||this._defaultPositionTarget;if(this.autoFitOnAttach){if(window.getComput edStyle(this).display==="none"){setTimeout(function(){this.fit()}.bind(this))}el se{this.fit()}}},fit:function(){this.position();this.constrain();this.center()}, _discoverInfo:function(){if(this._fitInfo){return}var target=window.getComputedS tyle(this);var sizer=window.getComputedStyle(this.sizingTarget);this._fitInfo={i nlineStyle:{top:this.style.top||"",left:this.style.left||"",position:this.style. position||""},sizerInlineStyle:{maxWidth:this.sizingTarget.style.maxWidth||"",ma xHeight:this.sizingTarget.style.maxHeight||"",boxSizing:this.sizingTarget.style. boxSizing||""},positionedBy:{vertically:target.top!=="auto"?"top":target.bottom! =="auto"?"bottom":null,horizontally:target.left!=="auto"?"left":target.right!==" auto"?"right":null},sizedBy:{height:sizer.maxHeight!=="none",width:sizer.maxWidt h!=="none",minWidth:parseInt(sizer.minWidth,10)||0,minHeight:parseInt(sizer.minH eight,10)||0},margin:{top:parseInt(target.marginTop,10)||0,right:parseInt(target .marginRight,10)||0,bottom:parseInt(target.marginBottom,10)||0,left:parseInt(tar get.marginLeft,10)||0}};if(this.verticalOffset){this._fitInfo.margin.top=this._f itInfo.margin.bottom=this.verticalOffset;this._fitInfo.inlineStyle.marginTop=thi s.style.marginTop||"";this._fitInfo.inlineStyle.marginBottom=this.style.marginBo ttom||"";this.style.marginTop=this.style.marginBottom=this.verticalOffset+"px"}i f(this.horizontalOffset){this._fitInfo.margin.left=this._fitInfo.margin.right=th is.horizontalOffset;this._fitInfo.inlineStyle.marginLeft=this.style.marginLeft|| "";this._fitInfo.inlineStyle.marginRight=this.style.marginRight||"";this.style.m arginLeft=this.style.marginRight=this.horizontalOffset+"px"}},resetFit:function( ){var info=this._fitInfo||{};for(var property in info.sizerInlineStyle){this.siz ingTarget.style[property]=info.sizerInlineStyle[property]}for(var property in in fo.inlineStyle){this.style[property]=info.inlineStyle[property]}this._fitInfo=nu ll},refit:function(){var scrollLeft=this.sizingTarget.scrollLeft;var scrollTop=t his.sizingTarget.scrollTop;this.resetFit();this.fit();this.sizingTarget.scrollLe ft=scrollLeft;this.sizingTarget.scrollTop=scrollTop},position:function(){if(!thi s.horizontalAlign&&!this.verticalAlign){return}this._discoverInfo();this.style.p osition="fixed";this.sizingTarget.style.boxSizing="border-box";this.style.left=" 0px";this.style.top="0px";var rect=this.getBoundingClientRect();var positionRect =this.__getNormalizedRect(this.positionTarget);var fitRect=this.__getNormalizedR ect(this.fitInto);var margin=this._fitInfo.margin;var size={width:rect.width+mar gin.left+margin.right,height:rect.height+margin.top+margin.bottom};var position= this.__getPosition(this._localeHorizontalAlign,this.verticalAlign,size,positionR ect,fitRect);var left=position.left+margin.left;var top=position.top+margin.top; var right=Math.min(fitRect.right-margin.right,left+rect.width);var bottom=Math.m in(fitRect.bottom-margin.bottom,top+rect.height);var minWidth=this._fitInfo.size dBy.minWidth;var minHeight=this._fitInfo.sizedBy.minHeight;if(left<margin.left){ left=margin.left;if(right-left<minWidth){left=right-minWidth}}if(top<margin.top) {top=margin.top;if(bottom-top<minHeight){top=bottom-minHeight}}this.sizingTarget .style.maxWidth=right-left+"px";this.sizingTarget.style.maxHeight=bottom-top+"px ";this.style.left=left-rect.left+"px";this.style.top=top-rect.top+"px"},constrai n:function(){if(this.horizontalAlign||this.verticalAlign){return}this._discoverI nfo();var info=this._fitInfo;if(!info.positionedBy.vertically){this.style.positi on="fixed";this.style.top="0px"}if(!info.positionedBy.horizontally){this.style.p osition="fixed";this.style.left="0px"}this.sizingTarget.style.boxSizing="border- box";var rect=this.getBoundingClientRect();if(!info.sizedBy.height){this.__sizeD imension(rect,info.positionedBy.vertically,"top","bottom","Height")}if(!info.siz edBy.width){this.__sizeDimension(rect,info.positionedBy.horizontally,"left","rig ht","Width")}},_sizeDimension:function(rect,positionedBy,start,end,extent){this. __sizeDimension(rect,positionedBy,start,end,extent)},__sizeDimension:function(re ct,positionedBy,start,end,extent){var info=this._fitInfo;var fitRect=this.__getN ormalizedRect(this.fitInto);var max=extent==="Width"?fitRect.width:fitRect.heigh t;var flip=positionedBy===end;var offset=flip?max-rect[end]:rect[start];var marg in=info.margin[flip?start:end];var offsetExtent="offset"+extent;var sizingOffset =this[offsetExtent]-this.sizingTarget[offsetExtent];this.sizingTarget.style["max "+extent]=max-margin-offset-sizingOffset+"px"},center:function(){if(this.horizon talAlign||this.verticalAlign){return}this._discoverInfo();var positionedBy=this. _fitInfo.positionedBy;if(positionedBy.vertically&&positionedBy.horizontally){ret urn}this.style.position="fixed";if(!positionedBy.vertically){this.style.top="0px "}if(!positionedBy.horizontally){this.style.left="0px"}var rect=this.getBounding ClientRect();var fitRect=this.__getNormalizedRect(this.fitInto);if(!positionedBy .vertically){var top=fitRect.top-rect.top+(fitRect.height-rect.height)/2;this.st yle.top=top+"px"}if(!positionedBy.horizontally){var left=fitRect.left-rect.left+ (fitRect.width-rect.width)/2;this.style.left=left+"px"}},__getNormalizedRect:fun ction(target){if(target===document.documentElement||target===window){return{top: 0,left:0,width:window.innerWidth,height:window.innerHeight,right:window.innerWid th,bottom:window.innerHeight}}return target.getBoundingClientRect()},__getCroppe dArea:function(position,size,fitRect){var verticalCrop=Math.min(0,position.top)+ Math.min(0,fitRect.bottom-(position.top+size.height));var horizontalCrop=Math.mi n(0,position.left)+Math.min(0,fitRect.right-(position.left+size.width));return M ath.abs(verticalCrop)*size.width+Math.abs(horizontalCrop)*size.height},__getPosi tion:function(hAlign,vAlign,size,positionRect,fitRect){var positions=[{verticalA lign:"top",horizontalAlign:"left",top:positionRect.top,left:positionRect.left},{ verticalAlign:"top",horizontalAlign:"right",top:positionRect.top,left:positionRe ct.right-size.width},{verticalAlign:"bottom",horizontalAlign:"left",top:position Rect.bottom-size.height,left:positionRect.left},{verticalAlign:"bottom",horizont alAlign:"right",top:positionRect.bottom-size.height,left:positionRect.right-size .width}];if(this.noOverlap){for(var i=0,l=positions.length;i<l;i++){var copy={}; for(var key in positions[i]){copy[key]=positions[i][key]}positions.push(copy)}po sitions[0].top=positions[1].top+=positionRect.height;positions[2].top=positions[ 3].top-=positionRect.height;positions[4].left=positions[6].left+=positionRect.wi dth;positions[5].left=positions[7].left-=positionRect.width}vAlign=vAlign==="aut o"?null:vAlign;hAlign=hAlign==="auto"?null:hAlign;var position;for(var i=0;i<pos itions.length;i++){var pos=positions[i];if(!this.dynamicAlign&&!this.noOverlap&& pos.verticalAlign===vAlign&&pos.horizontalAlign===hAlign){position=pos;break}var alignOk=(!vAlign||pos.verticalAlign===vAlign)&&(!hAlign||pos.horizontalAlign=== hAlign);if(!this.dynamicAlign&&!alignOk){continue}position=position||pos;pos.cro ppedArea=this.__getCroppedArea(pos,size,fitRect);var diff=pos.croppedArea-positi on.croppedArea;if(diff<0||diff===0&&alignOk){position=pos}if(position.croppedAre a===0&&alignOk){break}}return position}};(function(){"use strict";Polymer({is:"i ron-overlay-backdrop",properties:{opened:{reflectToAttribute:true,type:Boolean,v alue:false,observer:"_openedChanged"}},listeners:{transitionend:"_onTransitionen d"},created:function(){this.__openedRaf=null},attached:function(){this.opened&&t his._openedChanged(this.opened)},prepare:function(){if(this.opened&&!this.parent Node){Polymer.dom(document.body).appendChild(this)}},open:function(){this.opened =true},close:function(){this.opened=false},complete:function(){if(!this.opened&& this.parentNode===document.body){Polymer.dom(this.parentNode).removeChild(this)} },_onTransitionend:function(event){if(event&&event.target===this){this.complete( )}},_openedChanged:function(opened){if(opened){this.prepare()}else{var cs=window .getComputedStyle(this);if(cs.transitionDuration==="0s"||cs.opacity==0){this.com plete()}}if(!this.isAttached){return}if(this.__openedRaf){window.cancelAnimation Frame(this.__openedRaf);this.__openedRaf=null}this.scrollTop=this.scrollTop;this .__openedRaf=window.requestAnimationFrame(function(){this.__openedRaf=null;this. toggleClass("opened",this.opened)}.bind(this))}})})();Polymer.IronOverlayManager Class=function(){this._overlays=[];this._minimumZ=101;this._backdropElement=null ;Polymer.Gestures.add(document,"tap",this._onCaptureClick.bind(this));document.a ddEventListener("focus",this._onCaptureFocus.bind(this),true);document.addEventL istener("keydown",this._onCaptureKeyDown.bind(this),true)};Polymer.IronOverlayMa nagerClass.prototype={constructor:Polymer.IronOverlayManagerClass,get backdropEl ement(){if(!this._backdropElement){this._backdropElement=document.createElement( "iron-overlay-backdrop")}return this._backdropElement},get deepActiveElement(){v ar active=document.activeElement||document.body;while(active.root&&Polymer.dom(a ctive.root).activeElement){active=Polymer.dom(active.root).activeElement}return active},_bringOverlayAtIndexToFront:function(i){var overlay=this._overlays[i];if (!overlay){return}var lastI=this._overlays.length-1;var currentOverlay=this._ove rlays[lastI];if(currentOverlay&&this._shouldBeBehindOverlay(overlay,currentOverl ay)){lastI--}if(i>=lastI){return}var minimumZ=Math.max(this.currentOverlayZ(),th is._minimumZ);if(this._getZ(overlay)<=minimumZ){this._applyOverlayZ(overlay,mini mumZ)}while(i<lastI){this._overlays[i]=this._overlays[i+1];i++}this._overlays[la stI]=overlay},addOrRemoveOverlay:function(overlay){if(overlay.opened){this.addOv erlay(overlay)}else{this.removeOverlay(overlay)}},addOverlay:function(overlay){v ar i=this._overlays.indexOf(overlay);if(i>=0){this._bringOverlayAtIndexToFront(i );this.trackBackdrop();return}var insertionIndex=this._overlays.length;var curre ntOverlay=this._overlays[insertionIndex-1];var minimumZ=Math.max(this._getZ(curr entOverlay),this._minimumZ);var newZ=this._getZ(overlay);if(currentOverlay&&this ._shouldBeBehindOverlay(overlay,currentOverlay)){this._applyOverlayZ(currentOver lay,minimumZ);insertionIndex--;var previousOverlay=this._overlays[insertionIndex -1];minimumZ=Math.max(this._getZ(previousOverlay),this._minimumZ)}if(newZ<=minim umZ){this._applyOverlayZ(overlay,minimumZ)}this._overlays.splice(insertionIndex, 0,overlay);this.trackBackdrop()},removeOverlay:function(overlay){var i=this._ove rlays.indexOf(overlay);if(i===-1){return}this._overlays.splice(i,1);this.trackBa ckdrop()},currentOverlay:function(){var i=this._overlays.length-1;return this._o verlays[i]},currentOverlayZ:function(){return this._getZ(this.currentOverlay())} ,ensureMinimumZ:function(minimumZ){this._minimumZ=Math.max(this._minimumZ,minimu mZ)},focusOverlay:function(){var current=this.currentOverlay();if(current){curre nt._applyFocus()}},trackBackdrop:function(){var overlay=this._overlayWithBackdro p();if(!overlay&&!this._backdropElement){return}this.backdropElement.style.zInde x=this._getZ(overlay)-1;this.backdropElement.opened=!!overlay},getBackdrops:func tion(){var backdrops=[];for(var i=0;i<this._overlays.length;i++){if(this._overla ys[i].withBackdrop){backdrops.push(this._overlays[i])}}return backdrops},backdro pZ:function(){return this._getZ(this._overlayWithBackdrop())-1},_overlayWithBack drop:function(){for(var i=0;i<this._overlays.length;i++){if(this._overlays[i].wi thBackdrop){return this._overlays[i]}}},_getZ:function(overlay){var z=this._mini mumZ;if(overlay){var z1=Number(overlay.style.zIndex||window.getComputedStyle(ove rlay).zIndex);if(z1===z1){z=z1}}return z},_setZ:function(element,z){element.styl e.zIndex=z},_applyOverlayZ:function(overlay,aboveZ){this._setZ(overlay,aboveZ+2) },_overlayInPath:function(path){path=path||[];for(var i=0;i<path.length;i++){if( path[i]._manager===this){return path[i]}}},_onCaptureClick:function(event){var o verlay=this.currentOverlay();if(overlay&&this._overlayInPath(Polymer.dom(event). path)!==overlay){overlay._onCaptureClick(event)}},_onCaptureFocus:function(event ){var overlay=this.currentOverlay();if(overlay){overlay._onCaptureFocus(event)}} ,_onCaptureKeyDown:function(event){var overlay=this.currentOverlay();if(overlay) {if(Polymer.IronA11yKeysBehavior.keyboardEventMatchesKeys(event,"esc")){overlay. _onCaptureEsc(event)}else if(Polymer.IronA11yKeysBehavior.keyboardEventMatchesKe ys(event,"tab")){overlay._onCaptureTab(event)}}},_shouldBeBehindOverlay:function (overlay1,overlay2){return!overlay1.alwaysOnTop&&overlay2.alwaysOnTop}};Polymer. IronOverlayManager=new Polymer.IronOverlayManagerClass;(function(){"use strict"; var p=Element.prototype;var matches=p.matches||p.matchesSelector||p.mozMatchesSe lector||p.msMatchesSelector||p.oMatchesSelector||p.webkitMatchesSelector;Polymer .IronFocusablesHelper={getTabbableNodes:function(node){var result=[];var needsSo rtByTabIndex=this._collectTabbableNodes(node,result);if(needsSortByTabIndex){ret urn this._sortByTabIndex(result)}return result},isFocusable:function(element){if (matches.call(element,"input, select, textarea, button, object")){ 46 cr.define("downloads",function(){var Item=Polymer({is:"downloads-item",propertie s:{data:{type:Object},completelyOnDisk_:{computed:"computeCompletelyOnDisk_("+"d ata.state, data.file_externally_removed)",type:Boolean,value:true},controlledBy_ :{computed:"computeControlledBy_(data.by_ext_id, data.by_ext_name)",type:String, value:""},isActive_:{computed:"computeIsActive_("+"data.state, data.file_externa lly_removed)",type:Boolean,value:true},isDangerous_:{computed:"computeIsDangerou s_(data.state)",type:Boolean,value:false},isMalware_:{computed:"computeIsMalware _(isDangerous_, data.danger_type)",type:Boolean,value:false},isInProgress_:{comp uted:"computeIsInProgress_(data.state)",type:Boolean,value:false},pauseOrResumeT ext_:{computed:"computePauseOrResumeText_(isInProgress_, data.resume)",type:Stri ng},showCancel_:{computed:"computeShowCancel_(data.state)",type:Boolean,value:fa lse},showProgress_:{computed:"computeShowProgress_(showCancel_, data.percent)",t ype:Boolean,value:false}},observers:["observeControlledBy_(controlledBy_)","obse rveIsDangerous_(isDangerous_, data)"],ready:function(){this.content=this.$.conte nt},chopUrl_:function(url){return url.slice(0,300)},computeClass_:function(){var classes=[];if(this.isActive_)classes.push("is-active");if(this.isDangerous_)cla sses.push("dangerous");if(this.showProgress_)classes.push("show-progress");retur n classes.join(" ")},computeCompletelyOnDisk_:function(){return this.data.state= =downloads.States.COMPLETE&&!this.data.file_externally_removed},computeControlle dBy_:function(){if(!this.data.by_ext_id||!this.data.by_ext_name)return"";var url ="chrome://extensions#"+this.data.by_ext_id;var name=this.data.by_ext_name;retur n loadTimeData.getStringF("controlledByUrl",url,HTMLEscape(name))},computeDanger Icon_:function(){return this.isDangerous_?"cr:warning":""},computeDate_:function (){assert(typeof this.data.hideDate=="boolean");if(this.data.hideDate)return"";r eturn assert(this.data.since_string||this.data.date_string)},computeDescription_ :function(){var data=this.data;switch(data.state){case downloads.States.DANGEROU S:var fileName=data.file_name;switch(data.danger_type){case downloads.DangerType .DANGEROUS_FILE:return loadTimeData.getString("dangerFileDesc");case downloads.D angerType.DANGEROUS_URL:case downloads.DangerType.DANGEROUS_CONTENT:case downloa ds.DangerType.DANGEROUS_HOST:return loadTimeData.getString("dangerDownloadDesc") ;case downloads.DangerType.UNCOMMON_CONTENT:return loadTimeData.getString("dange rUncommonDesc");case downloads.DangerType.POTENTIALLY_UNWANTED:return loadTimeDa ta.getString("dangerSettingsDesc")}break;case downloads.States.IN_PROGRESS:case downloads.States.PAUSED:return data.progress_status_text}return""},computeIsActi ve_:function(){return this.data.state!=downloads.States.CANCELLED&&this.data.sta te!=downloads.States.INTERRUPTED&&!this.data.file_externally_removed},computeIsD angerous_:function(){return this.data.state==downloads.States.DANGEROUS},compute IsInProgress_:function(){return this.data.state==downloads.States.IN_PROGRESS},c omputeIsMalware_:function(){return this.isDangerous_&&(this.data.danger_type==do wnloads.DangerType.DANGEROUS_CONTENT||this.data.danger_type==downloads.DangerTyp e.DANGEROUS_HOST||this.data.danger_type==downloads.DangerType.DANGEROUS_URL||thi s.data.danger_type==downloads.DangerType.POTENTIALLY_UNWANTED)},computePauseOrRe sumeText_:function(){if(this.isInProgress_)return loadTimeData.getString("contro lPause");if(this.data.resume)return loadTimeData.getString("controlResume");retu rn""},computeRemoveStyle_:function(){var canDelete=loadTimeData.getBoolean("allo wDeletingHistory");var hideRemove=this.isDangerous_||this.showCancel_||!canDelet e;return hideRemove?"visibility: hidden":""},computeShowCancel_:function(){retur n this.data.state==downloads.States.IN_PROGRESS||this.data.state==downloads.Stat es.PAUSED},computeShowProgress_:function(){return this.showCancel_&&this.data.pe rcent>=-1},computeTag_:function(){switch(this.data.state){case downloads.States. CANCELLED:return loadTimeData.getString("statusCancelled");case downloads.States .INTERRUPTED:return this.data.last_reason_text;case downloads.States.COMPLETE:re turn this.data.file_externally_removed?loadTimeData.getString("statusRemoved"):" "}return""},isIndeterminate_:function(){return this.data.percent==-1},observeCon trolledBy_:function(){this.$["controlled-by"].innerHTML=this.controlledBy_},obse rveIsDangerous_:function(){if(!this.data)return;if(this.isDangerous_){this.$.url .removeAttribute("href")}else{this.$.url.href=assert(this.data.url);var filePath =encodeURIComponent(this.data.file_path);var scaleFactor="?scale="+window.device PixelRatio+"x";this.$["file-icon"].src="chrome://fileicon/"+filePath+scaleFactor }},onCancelTap_:function(){downloads.ActionService.getInstance().cancel(this.dat a.id)},onDiscardDangerousTap_:function(){downloads.ActionService.getInstance().d iscardDangerous(this.data.id)},onDragStart_:function(e){e.preventDefault();downl oads.ActionService.getInstance().drag(this.data.id)},onFileLinkTap_:function(e){ e.preventDefault();downloads.ActionService.getInstance().openFile(this.data.id)} ,onPauseOrResumeTap_:function(){if(this.isInProgress_)downloads.ActionService.ge tInstance().pause(this.data.id);else downloads.ActionService.getInstance().resum e(this.data.id)},onRemoveTap_:function(){downloads.ActionService.getInstance().r emove(this.data.id)},onRetryTap_:function(){downloads.ActionService.getInstance( ).download(this.data.url)},onSaveDangerousTap_:function(){downloads.ActionServic e.getInstance().saveDangerous(this.data.id)},onShowTap_:function(){downloads.Act ionService.getInstance().show(this.data.id)}});return{Item:Item}});
47 return matches.call(element,":not([disabled])")}return matches.call(element,"a[h ref], area[href], iframe, [tabindex], [contentEditable]")},isTabbable:function(e lement){return this.isFocusable(element)&&matches.call(element,':not([tabindex=" -1"])')&&this._isVisible(element)},_normalizedTabIndex:function(element){if(this .isFocusable(element)){var tabIndex=element.getAttribute("tabindex")||0;return N umber(tabIndex)}return-1},_collectTabbableNodes:function(node,result){if(node.no deType!==Node.ELEMENT_NODE||!this._isVisible(node)){return false}var element=nod e;var tabIndex=this._normalizedTabIndex(element);var needsSortByTabIndex=tabInde x>0;if(tabIndex>=0){result.push(element)}var children;if(element.localName==="co ntent"){children=Polymer.dom(element).getDistributedNodes()}else{children=Polyme r.dom(element.root||element).children}for(var i=0;i<children.length;i++){var nee dsSort=this._collectTabbableNodes(children[i],result);needsSortByTabIndex=needsS ortByTabIndex||needsSort}return needsSortByTabIndex},_isVisible:function(element ){var style=element.style;if(style.visibility!=="hidden"&&style.display!=="none" ){style=window.getComputedStyle(element);return style.visibility!=="hidden"&&sty le.display!=="none"}return false},_sortByTabIndex:function(tabbables){var len=ta bbables.length;if(len<2){return tabbables}var pivot=Math.ceil(len/2);var left=th is._sortByTabIndex(tabbables.slice(0,pivot));var right=this._sortByTabIndex(tabb ables.slice(pivot));return this._mergeSortByTabIndex(left,right)},_mergeSortByTa bIndex:function(left,right){var result=[];while(left.length>0&&right.length>0){i f(this._hasLowerTabOrder(left[0],right[0])){result.push(right.shift())}else{resu lt.push(left.shift())}}return result.concat(left,right)},_hasLowerTabOrder:funct ion(a,b){var ati=Math.max(a.tabIndex,0);var bti=Math.max(b.tabIndex,0);return at i===0||bti===0?bti>ati:ati>bti}}})();(function(){"use strict";Polymer.IronOverla yBehaviorImpl={properties:{opened:{observer:"_openedChanged",type:Boolean,value: false,notify:true},canceled:{observer:"_canceledChanged",readOnly:true,type:Bool ean,value:false},withBackdrop:{observer:"_withBackdropChanged",type:Boolean},noA utoFocus:{type:Boolean,value:false},noCancelOnEscKey:{type:Boolean,value:false}, noCancelOnOutsideClick:{type:Boolean,value:false},closingReason:{type:Object},re storeFocusOnClose:{type:Boolean,value:false},alwaysOnTop:{type:Boolean},_manager :{type:Object,value:Polymer.IronOverlayManager},_focusedChild:{type:Object}},lis teners:{"iron-resize":"_onIronResize"},get backdropElement(){return this._manage r.backdropElement},get _focusNode(){return this._focusedChild||Polymer.dom(this) .querySelector("[autofocus]")||this},get _focusableNodes(){return Polymer.IronFo cusablesHelper.getTabbableNodes(this)},ready:function(){this.__isAnimating=false ;this.__shouldRemoveTabIndex=false;this.__firstFocusableNode=this.__lastFocusabl eNode=null;this.__raf=null;this.__restoreFocusNode=null;this._ensureSetup()},att ached:function(){if(this.opened){this._openedChanged(this.opened)}this._observer =Polymer.dom(this).observeNodes(this._onNodesChange)},detached:function(){Polyme r.dom(this).unobserveNodes(this._observer);this._observer=null;if(this.__raf){wi ndow.cancelAnimationFrame(this.__raf);this.__raf=null}this._manager.removeOverla y(this)},toggle:function(){this._setCanceled(false);this.opened=!this.opened},op en:function(){this._setCanceled(false);this.opened=true},close:function(){this._ setCanceled(false);this.opened=false},cancel:function(event){var cancelEvent=thi s.fire("iron-overlay-canceled",event,{cancelable:true});if(cancelEvent.defaultPr evented){return}this._setCanceled(true);this.opened=false},invalidateTabbables:f unction(){this.__firstFocusableNode=this.__lastFocusableNode=null},_ensureSetup: function(){if(this._overlaySetup){return}this._overlaySetup=true;this.style.outl ine="none";this.style.display="none"},_openedChanged:function(opened){if(opened) {this.removeAttribute("aria-hidden")}else{this.setAttribute("aria-hidden","true" )}if(!this.isAttached){return}this.__isAnimating=true;this.__onNextAnimationFram e(this.__openedChanged)},_canceledChanged:function(){this.closingReason=this.clo singReason||{};this.closingReason.canceled=this.canceled},_withBackdropChanged:f unction(){if(this.withBackdrop&&!this.hasAttribute("tabindex")){this.setAttribut e("tabindex","-1");this.__shouldRemoveTabIndex=true}else if(this.__shouldRemoveT abIndex){this.removeAttribute("tabindex");this.__shouldRemoveTabIndex=false}if(t his.opened&&this.isAttached){this._manager.trackBackdrop()}},_prepareRenderOpene d:function(){this.__restoreFocusNode=this._manager.deepActiveElement;this._prepa rePositioning();this.refit();this._finishPositioning();if(this.noAutoFocus&&docu ment.activeElement===this._focusNode){this._focusNode.blur();this.__restoreFocus Node.focus()}},_renderOpened:function(){this._finishRenderOpened()},_renderClose d:function(){this._finishRenderClosed()},_finishRenderOpened:function(){this.not ifyResize();this.__isAnimating=false;this.fire("iron-overlay-opened")},_finishRe nderClosed:function(){this.style.display="none";this.style.zIndex="";this.notify Resize();this.__isAnimating=false;this.fire("iron-overlay-closed",this.closingRe ason)},_preparePositioning:function(){this.style.transition=this.style.webkitTra nsition="none";this.style.transform=this.style.webkitTransform="none";this.style .display=""},_finishPositioning:function(){this.style.display="none";this.scroll Top=this.scrollTop;this.style.transition=this.style.webkitTransition="";this.sty le.transform=this.style.webkitTransform="";this.style.display="";this.scrollTop= this.scrollTop},_applyFocus:function(){if(this.opened){if(!this.noAutoFocus){thi s._focusNode.focus()}}else{this._focusNode.blur();this._focusedChild=null;if(thi s.restoreFocusOnClose&&this.__restoreFocusNode){this.__restoreFocusNode.focus()} this.__restoreFocusNode=null;var currentOverlay=this._manager.currentOverlay();i f(currentOverlay&&this!==currentOverlay){currentOverlay._applyFocus()}}},_onCapt ureClick:function(event){if(!this.noCancelOnOutsideClick){this.cancel(event)}},_ onCaptureFocus:function(event){if(!this.withBackdrop){return}var path=Polymer.do m(event).path;if(path.indexOf(this)===-1){event.stopPropagation();this._applyFoc us()}else{this._focusedChild=path[0]}},_onCaptureEsc:function(event){if(!this.no CancelOnEscKey){this.cancel(event)}},_onCaptureTab:function(event){if(!this.with Backdrop){return}this.__ensureFirstLastFocusables();var shift=event.shiftKey;var nodeToCheck=shift?this.__firstFocusableNode:this.__lastFocusableNode;var nodeTo Set=shift?this.__lastFocusableNode:this.__firstFocusableNode;var shouldWrap=fals e;if(nodeToCheck===nodeToSet){shouldWrap=true}else{var focusedNode=this._manager .deepActiveElement;shouldWrap=focusedNode===nodeToCheck||focusedNode===this}if(s houldWrap){event.preventDefault();this._focusedChild=nodeToSet;this._applyFocus( )}},_onIronResize:function(){if(this.opened&&!this.__isAnimating){this.__onNextA nimationFrame(this.refit)}},_onNodesChange:function(){if(this.opened&&!this.__is Animating){this.invalidateTabbables();this.notifyResize()}},__ensureFirstLastFoc usables:function(){if(!this.__firstFocusableNode||!this.__lastFocusableNode){var focusableNodes=this._focusableNodes;this.__firstFocusableNode=focusableNodes[0] ;this.__lastFocusableNode=focusableNodes[focusableNodes.length-1]}},__openedChan ged:function(){if(this.opened){this._prepareRenderOpened();this._manager.addOver lay(this);this._applyFocus();this._renderOpened()}else{this._manager.removeOverl ay(this);this._applyFocus();this._renderClosed()}},__onNextAnimationFrame:functi on(callback){if(this.__raf){window.cancelAnimationFrame(this.__raf)}var self=thi s;this.__raf=window.requestAnimationFrame(function nextAnimationFrame(){self.__r af=null;callback.call(self)})}};Polymer.IronOverlayBehavior=[Polymer.IronFitBeha vior,Polymer.IronResizableBehavior,Polymer.IronOverlayBehaviorImpl]})();Polymer. NeonAnimatableBehavior={properties:{animationConfig:{type:Object},entryAnimation :{observer:"_entryAnimationChanged",type:String},exitAnimation:{observer:"_exitA nimationChanged",type:String}},_entryAnimationChanged:function(){this.animationC onfig=this.animationConfig||{};this.animationConfig["entry"]=[{name:this.entryAn imation,node:this}]},_exitAnimationChanged:function(){this.animationConfig=this. animationConfig||{};this.animationConfig["exit"]=[{name:this.exitAnimation,node: this}]},_copyProperties:function(config1,config2){for(var property in config2){c onfig1[property]=config2[property]}},_cloneConfig:function(config){var clone={is Clone:true};this._copyProperties(clone,config);return clone},_getAnimationConfig Recursive:function(type,map,allConfigs){if(!this.animationConfig){return}if(this .animationConfig.value&&typeof this.animationConfig.value==="function"){this._wa rn(this._logf("playAnimation","Please put 'animationConfig' inside of your compo nents 'properties' object instead of outside of it."));return}var thisConfig;if( type){thisConfig=this.animationConfig[type]}else{thisConfig=this.animationConfig }if(!Array.isArray(thisConfig)){thisConfig=[thisConfig]}if(thisConfig){for(var c onfig,index=0;config=thisConfig[index];index++){if(config.animatable){config.ani matable._getAnimationConfigRecursive(config.type||type,map,allConfigs)}else{if(c onfig.id){var cachedConfig=map[config.id];if(cachedConfig){if(!cachedConfig.isCl one){map[config.id]=this._cloneConfig(cachedConfig);cachedConfig=map[config.id]} this._copyProperties(cachedConfig,config)}else{map[config.id]=config}}else{allCo nfigs.push(config)}}}}},getAnimationConfig:function(type){var map={};var allConf igs=[];this._getAnimationConfigRecursive(type,map,allConfigs);for(var key in map ){allConfigs.push(map[key])}return allConfigs}};Polymer.NeonAnimationRunnerBehav iorImpl={_configureAnimations:function(configs){var results=[];if(configs.length >0){for(var config,index=0;config=configs[index];index++){var neonAnimation=docu ment.createElement(config.name);if(neonAnimation.isNeonAnimation){var result=nul l;try{result=neonAnimation.configure(config);if(typeof result.cancel!="function" ){result=document.timeline.play(result)}}catch(e){result=null;console.warn("Coul dnt play","(",config.name,").",e)}if(result){results.push({neonAnimation:neonAni mation,config:config,animation:result})}}else{console.warn(this.is+":",config.na me,"not found!")}}}return results},_shouldComplete:function(activeEntries){var f inished=true;for(var i=0;i<activeEntries.length;i++){if(activeEntries[i].animati on.playState!="finished"){finished=false;break}}return finished},_complete:funct ion(activeEntries){for(var i=0;i<activeEntries.length;i++){activeEntries[i].neon Animation.complete(activeEntries[i].config)}for(var i=0;i<activeEntries.length;i ++){activeEntries[i].animation.cancel()}},playAnimation:function(type,cookie){va r configs=this.getAnimationConfig(type);if(!configs){return}this._active=this._a ctive||{};if(this._active[type]){this._complete(this._active[type]);delete this. _active[type]}var activeEntries=this._configureAnimations(configs);if(activeEntr ies.length==0){this.fire("neon-animation-finish",cookie,{bubbles:false});return} this._active[type]=activeEntries;for(var i=0;i<activeEntries.length;i++){activeE ntries[i].animation.onfinish=function(){if(this._shouldComplete(activeEntries)){ this._complete(activeEntries);delete this._active[type];this.fire("neon-animatio n-finish",cookie,{bubbles:false})}}.bind(this)}},cancelAnimation:function(){for( var k in this._animations){this._animations[k].cancel()}this._animations={}}};Po lymer.NeonAnimationRunnerBehavior=[Polymer.NeonAnimatableBehavior,Polymer.NeonAn imationRunnerBehaviorImpl];Polymer.NeonAnimationBehavior={properties:{animationT iming:{type:Object,value:function(){return{duration:500,easing:"cubic-bezier(0.4 , 0, 0.2, 1)",fill:"both"}}}},isNeonAnimation:true,timingFromConfig:function(con fig){if(config.timing){for(var property in config.timing){this.animationTiming[p roperty]=config.timing[property]}}return this.animationTiming},setPrefixedProper ty:function(node,property,value){var map={transform:["webkitTransform"],transfor mOrigin:["mozTransformOrigin","webkitTransformOrigin"]};var prefixes=map[propert y];for(var prefix,index=0;prefix=prefixes[index];index++){node.style[prefix]=val ue}node.style[property]=value},complete:function(){}};Polymer({is:"opaque-animat ion",behaviors:[Polymer.NeonAnimationBehavior],configure:function(config){var no de=config.node;this._effect=new KeyframeEffect(node,[{opacity:"1"},{opacity:"1"} ],this.timingFromConfig(config));node.style.opacity="0";return this._effect},com plete:function(config){config.node.style.opacity=""}});(function(){"use strict"; var LAST_TOUCH_POSITION={pageX:0,pageY:0};var ROOT_TARGET=null;var SCROLLABLE_NO DES=[];Polymer.IronDropdownScrollManager={get currentLockingElement(){return thi s._lockingElements[this._lockingElements.length-1]},elementIsScrollLocked:functi on(element){var currentLockingElement=this.currentLockingElement;if(currentLocki ngElement===undefined)return false;var scrollLocked;if(this._hasCachedLockedElem ent(element)){return true}if(this._hasCachedUnlockedElement(element)){return fal se}scrollLocked=!!currentLockingElement&&currentLockingElement!==element&&!this. _composedTreeContains(currentLockingElement,element);if(scrollLocked){this._lock edElementCache.push(element)}else{this._unlockedElementCache.push(element)}retur n scrollLocked},pushScrollLock:function(element){if(this._lockingElements.indexO f(element)>=0){return}if(this._lockingElements.length===0){this._lockScrollInter actions()}this._lockingElements.push(element);this._lockedElementCache=[];this._ unlockedElementCache=[]},removeScrollLock:function(element){var index=this._lock ingElements.indexOf(element);if(index===-1){return}this._lockingElements.splice( index,1);this._lockedElementCache=[];this._unlockedElementCache=[];if(this._lock ingElements.length===0){this._unlockScrollInteractions()}},_lockingElements:[],_ lockedElementCache:null,_unlockedElementCache:null,_hasCachedLockedElement:funct ion(element){return this._lockedElementCache.indexOf(element)>-1},_hasCachedUnlo ckedElement:function(element){return this._unlockedElementCache.indexOf(element) >-1},_composedTreeContains:function(element,child){var contentElements;var distr ibutedNodes;var contentIndex;var nodeIndex;if(element.contains(child)){return tr ue}contentElements=Polymer.dom(element).querySelectorAll("content");for(contentI ndex=0;contentIndex<contentElements.length;++contentIndex){distributedNodes=Poly mer.dom(contentElements[contentIndex]).getDistributedNodes();for(nodeIndex=0;nod eIndex<distributedNodes.length;++nodeIndex){if(this._composedTreeContains(distri butedNodes[nodeIndex],child)){return true}}}return false},_scrollInteractionHand ler:function(event){if(event.cancelable&&this._shouldPreventScrolling(event)){ev ent.preventDefault()}if(event.targetTouches){var touch=event.targetTouches[0];LA ST_TOUCH_POSITION.pageX=touch.pageX;LAST_TOUCH_POSITION.pageY=touch.pageY}},_loc kScrollInteractions:function(){this._boundScrollHandler=this._boundScrollHandler ||this._scrollInteractionHandler.bind(this);document.addEventListener("wheel",th is._boundScrollHandler,true);document.addEventListener("mousewheel",this._boundS crollHandler,true);document.addEventListener("DOMMouseScroll",this._boundScrollH andler,true);document.addEventListener("touchstart",this._boundScrollHandler,tru e);document.addEventListener("touchmove",this._boundScrollHandler,true)},_unlock ScrollInteractions:function(){document.removeEventListener("wheel",this._boundSc rollHandler,true);document.removeEventListener("mousewheel",this._boundScrollHan dler,true);document.removeEventListener("DOMMouseScroll",this._boundScrollHandle r,true);document.removeEventListener("touchstart",this._boundScrollHandler,true) ;document.removeEventListener("touchmove",this._boundScrollHandler,true)},_shoul dPreventScrolling:function(event){var target=Polymer.dom(event).rootTarget;if(ev ent.type!=="touchmove"&&ROOT_TARGET!==target){ROOT_TARGET=target;SCROLLABLE_NODE S=this._getScrollableNodes(Polymer.dom(event).path)}if(!SCROLLABLE_NODES.length) {return true}if(event.type==="touchstart"){return false}var info=this._getScroll Info(event);return!this._getScrollingNode(SCROLLABLE_NODES,info.deltaX,info.delt aY)},_getScrollableNodes:function(nodes){var scrollables=[];var lockingIndex=nod es.indexOf(this.currentLockingElement);for(var i=0;i<=lockingIndex;i++){var node =nodes[i];if(node.nodeType===11){continue}var style=node.style;if(style.overflow !=="scroll"&&style.overflow!=="auto"){style=window.getComputedStyle(node)}if(sty le.overflow==="scroll"||style.overflow==="auto"){scrollables.push(node)}}return scrollables},_getScrollingNode:function(nodes,deltaX,deltaY){if(!deltaX&&!deltaY ){return}var verticalScroll=Math.abs(deltaY)>=Math.abs(deltaX);for(var i=0;i<nod es.length;i++){var node=nodes[i];var canScroll=false;if(verticalScroll){canScrol l=deltaY<0?node.scrollTop>0:node.scrollTop<node.scrollHeight-node.clientHeight}e lse{canScroll=deltaX<0?node.scrollLeft>0:node.scrollLeft<node.scrollWidth-node.c lientWidth}if(canScroll){return node}}},_getScrollInfo:function(event){var info= {deltaX:event.deltaX,deltaY:event.deltaY};if("deltaX"in event){}else if("wheelDe ltaX"in event){info.deltaX=-event.wheelDeltaX;info.deltaY=-event.wheelDeltaY}els e if("axis"in event){info.deltaX=event.axis===1?event.detail:0;info.deltaY=event .axis===2?event.detail:0}else if(event.targetTouches){var touch=event.targetTouc hes[0];info.deltaX=LAST_TOUCH_POSITION.pageX-touch.pageX;info.deltaY=LAST_TOUCH_ POSITION.pageY-touch.pageY}return info}}})();(function(){"use strict";Polymer({i s:"iron-dropdown",behaviors:[Polymer.IronControlState,Polymer.IronA11yKeysBehavi or,Polymer.IronOverlayBehavior,Polymer.NeonAnimationRunnerBehavior],properties:{ horizontalAlign:{type:String,value:"left",reflectToAttribute:true},verticalAlign :{type:String,value:"top",reflectToAttribute:true},openAnimationConfig:{type:Obj ect},closeAnimationConfig:{type:Object},focusTarget:{type:Object},noAnimations:{ type:Boolean,value:false},allowOutsideScroll:{type:Boolean,value:false},_boundOn CaptureScroll:{type:Function,value:function(){return this._onCaptureScroll.bind( this)}}},listeners:{"neon-animation-finish":"_onNeonAnimationFinish"},observers: ["_updateOverlayPosition(positionTarget, verticalAlign, horizontalAlign, vertica lOffset, horizontalOffset)"],get containedElement(){return Polymer.dom(this.$.co ntent).getDistributedNodes()[0]},get _focusTarget(){return this.focusTarget||thi s.containedElement},ready:function(){this._scrollTop=0;this._scrollLeft=0;this._ refitOnScrollRAF=null},attached:function(){if(!this.sizingTarget||this.sizingTar get===this){this.sizingTarget=this.containedElement}},detached:function(){this.c ancelAnimation();document.removeEventListener("scroll",this._boundOnCaptureScrol l);Polymer.IronDropdownScrollManager.removeScrollLock(this)},_openedChanged:func tion(){if(this.opened&&this.disabled){this.cancel()}else{this.cancelAnimation(); this._updateAnimationConfig();this._saveScrollPosition();if(this.opened){documen t.addEventListener("scroll",this._boundOnCaptureScroll);!this.allowOutsideScroll &&Polymer.IronDropdownScrollManager.pushScrollLock(this)}else{document.removeEve ntListener("scroll",this._boundOnCaptureScroll);Polymer.IronDropdownScrollManage r.removeScrollLock(this)}Polymer.IronOverlayBehaviorImpl._openedChanged.apply(th is,arguments)}},_renderOpened:function(){if(!this.noAnimations&&this.animationCo nfig.open){this.$.contentWrapper.classList.add("animating");this.playAnimation(" open")}else{Polymer.IronOverlayBehaviorImpl._renderOpened.apply(this,arguments)} },_renderClosed:function(){if(!this.noAnimations&&this.animationConfig.close){th is.$.contentWrapper.classList.add("animating");this.playAnimation("close")}else{ Polymer.IronOverlayBehaviorImpl._renderClosed.apply(this,arguments)}},_onNeonAni mationFinish:function(){this.$.contentWrapper.classList.remove("animating");if(t his.opened){this._finishRenderOpened()}else{this._finishRenderClosed()}},_onCapt ureScroll:function(){if(!this.allowOutsideScroll){this._restoreScrollPosition()} else{this._refitOnScrollRAF&&window.cancelAnimationFrame(this._refitOnScrollRAF) ;this._refitOnScrollRAF=window.requestAnimationFrame(this.refit.bind(this))}},_s aveScrollPosition:function(){if(document.scrollingElement){this._scrollTop=docum ent.scrollingElement.scrollTop;this._scrollLeft=document.scrollingElement.scroll Left}else{this._scrollTop=Math.max(document.documentElement.scrollTop,document.b ody.scrollTop);this._scrollLeft=Math.max(document.documentElement.scrollLeft,doc ument.body.scrollLeft)}},_restoreScrollPosition:function(){if(document.scrolling Element){document.scrollingElement.scrollTop=this._scrollTop;document.scrollingE lement.scrollLeft=this._scrollLeft}else{document.documentElement.scrollTop=this. _scrollTop;document.documentElement.scrollLeft=this._scrollLeft;document.body.sc rollTop=this._scrollTop;document.body.scrollLeft=this._scrollLeft}},_updateAnima tionConfig:function(){var animations=(this.openAnimationConfig||[]).concat(this. closeAnimationConfig||[]);for(var i=0;i<animations.length;i++){animations[i].nod e=this.containedElement}this.animationConfig={open:this.openAnimationConfig,clos e:this.closeAnimationConfig}},_updateOverlayPosition:function(){if(this.isAttach ed){this.notifyResize()}},_applyFocus:function(){var focusTarget=this.focusTarge t||this.containedElement;if(focusTarget&&this.opened&&!this.noAutoFocus){focusTa rget.focus()}else{Polymer.IronOverlayBehaviorImpl._applyFocus.apply(this,argumen ts)}}})})();Polymer({is:"fade-in-animation",behaviors:[Polymer.NeonAnimationBeha vior],configure:function(config){var node=config.node;this._effect=new KeyframeE ffect(node,[{opacity:"0"},{opacity:"1"}],this.timingFromConfig(config));return t his._effect}});Polymer({is:"fade-out-animation",behaviors:[Polymer.NeonAnimation Behavior],configure:function(config){var node=config.node;this._effect=new Keyfr ameEffect(node,[{opacity:"1"},{opacity:"0"}],this.timingFromConfig(config));retu rn this._effect}});Polymer({is:"paper-menu-grow-height-animation",behaviors:[Pol ymer.NeonAnimationBehavior],configure:function(config){var node=config.node;var rect=node.getBoundingClientRect();var height=rect.height;this._effect=new Keyfra meEffect(node,[{height:height/2+"px"},{height:height+"px"}],this.timingFromConfi g(config));return this._effect}});Polymer({is:"paper-menu-grow-width-animation", behaviors:[Polymer.NeonAnimationBehavior],configure:function(config){var node=co nfig.node;var rect=node.getBoundingClientRect();var width=rect.width;this._effec t=new KeyframeEffect(node,[{width:width/2+"px"},{width:width+"px"}],this.timingF romConfig(config));return this._effect}});Polymer({is:"paper-menu-shrink-width-a nimation",behaviors:[Polymer.NeonAnimationBehavior],configure:function(config){v ar node=config.node;var rect=node.getBoundingClientRect();var width=rect.width;t his._effect=new KeyframeEffect(node,[{width:width+"px"},{width:width-width/20+"p x"}],this.timingFromConfig(config));return this._effect}});Polymer({is:"paper-me nu-shrink-height-animation",behaviors:[Polymer.NeonAnimationBehavior],configure: function(config){var node=config.node;var rect=node.getBoundingClientRect();var height=rect.height;var top=rect.top;this.setPrefixedProperty(node,"transformOrig in","0 0");this._effect=new KeyframeEffect(node,[{height:height+"px",transform:" translateY(0)"},{height:height/2+"px",transform:"translateY(-20px)"}],this.timin gFromConfig(config));return this._effect}});(function(){"use strict";var config= {ANIMATION_CUBIC_BEZIER:"cubic-bezier(.3,.95,.5,1)",MAX_ANIMATION_TIME_MS:400};v ar PaperMenuButton=Polymer({is:"paper-menu-button",behaviors:[Polymer.IronA11yKe ysBehavior,Polymer.IronControlState],properties:{opened:{type:Boolean,value:fals e,notify:true,observer:"_openedChanged"},horizontalAlign:{type:String,value:"lef t",reflectToAttribute:true},verticalAlign:{type:String,value:"top",reflectToAttr ibute:true},dynamicAlign:{type:Boolean},horizontalOffset:{type:Number,value:0,no tify:true},verticalOffset:{type:Number,value:0,notify:true},noOverlap:{type:Bool ean},noAnimations:{type:Boolean,value:false},ignoreSelect:{type:Boolean,value:fa lse},closeOnActivate:{type:Boolean,value:false},openAnimationConfig:{type:Object ,value:function(){return[{name:"fade-in-animation",timing:{delay:100,duration:20 0}},{name:"paper-menu-grow-width-animation",timing:{delay:100,duration:150,easin g:config.ANIMATION_CUBIC_BEZIER}},{name:"paper-menu-grow-height-animation",timin g:{delay:100,duration:275,easing:config.ANIMATION_CUBIC_BEZIER}}]}},closeAnimati onConfig:{type:Object,value:function(){return[{name:"fade-out-animation",timing: {duration:150}},{name:"paper-menu-shrink-width-animation",timing:{delay:100,dura tion:50,easing:config.ANIMATION_CUBIC_BEZIER}},{name:"paper-menu-shrink-height-a nimation",timing:{duration:200,easing:"ease-in"}}]}},allowOutsideScroll:{type:Bo olean,value:false},restoreFocusOnClose:{type:Boolean,value:true},_dropdownConten t:{type:Object}},hostAttributes:{role:"group","aria-haspopup":"true"},listeners: {"iron-activate":"_onIronActivate","iron-select":"_onIronSelect"},get contentEle ment(){return Polymer.dom(this.$.content).getDistributedNodes()[0]},toggle:funct ion(){if(this.opened){this.close()}else{this.open()}},open:function(){if(this.di sabled){return}this.$.dropdown.open()},close:function(){this.$.dropdown.close()} ,_onIronSelect:function(event){if(!this.ignoreSelect){this.close()}},_onIronActi vate:function(event){if(this.closeOnActivate){this.close()}},_openedChanged:func tion(opened,oldOpened){if(opened){this._dropdownContent=this.contentElement;this .fire("paper-dropdown-open")}else if(oldOpened!=null){this.fire("paper-dropdown- close")}},_disabledChanged:function(disabled){Polymer.IronControlState._disabled Changed.apply(this,arguments);if(disabled&&this.opened){this.close()}},__onIronO verlayCanceled:function(event){var uiEvent=event.detail;var target=Polymer.dom(u iEvent).rootTarget;var trigger=this.$.trigger;var path=Polymer.dom(uiEvent).path ;if(path.indexOf(trigger)>-1){event.preventDefault()}}});Object.keys(config).for Each(function(key){PaperMenuButton[key]=config[key]});Polymer.PaperMenuButton=Pa perMenuButton})();Polymer.PaperInkyFocusBehaviorImpl={observers:["_focusedChange d(receivedFocusFromKeyboard)"],_focusedChanged:function(receivedFocusFromKeyboar d){if(receivedFocusFromKeyboard){this.ensureRipple()}if(this.hasRipple()){this._ ripple.holdDown=receivedFocusFromKeyboard}},_createRipple:function(){var ripple= Polymer.PaperRippleBehavior._createRipple();ripple.id="ink";ripple.setAttribute( "center","");ripple.classList.add("circle");return ripple}};Polymer.PaperInkyFoc usBehavior=[Polymer.IronButtonState,Polymer.IronControlState,Polymer.PaperRipple Behavior,Polymer.PaperInkyFocusBehaviorImpl];Polymer({is:"paper-icon-button",hos tAttributes:{role:"button",tabindex:"0"},behaviors:[Polymer.PaperInkyFocusBehavi or],properties:{src:{type:String},icon:{type:String},alt:{type:String,observer:" _altChanged"}},_altChanged:function(newValue,oldValue){var label=this.getAttribu te("aria-label");if(!label||oldValue==label){this.setAttribute("aria-label",newV alue)}}});Polymer({is:"iron-media-query",properties:{queryMatches:{type:Boolean, value:false,readOnly:true,notify:true},query:{type:String,observer:"queryChanged "},full:{type:Boolean,value:false},_boundMQHandler:{value:function(){return this .queryHandler.bind(this)}},_mq:{value:null}},attached:function(){this.style.disp lay="none";this.queryChanged()},detached:function(){this._remove()},_add:functio n(){if(this._mq){this._mq.addListener(this._boundMQHandler)}},_remove:function() {if(this._mq){this._mq.removeListener(this._boundMQHandler)}this._mq=null},query Changed:function(){this._remove();var query=this.query;if(!query){return}if(!thi s.full&&query[0]!=="("){query="("+query+")"}this._mq=window.matchMedia(query);th is._add();this.queryHandler(this._mq)},queryHandler:function(mq){this._setQueryM atches(mq.matches)}});Polymer.PaperSpinnerBehavior={listeners:{animationend:"__r eset",webkitAnimationEnd:"__reset"},properties:{active:{type:Boolean,value:false ,reflectToAttribute:true,observer:"__activeChanged"},alt:{type:String,value:"loa ding",observer:"__altChanged"},__coolingDown:{type:Boolean,value:false}},__compu teContainerClasses:function(active,coolingDown){return[active||coolingDown?"acti ve":"",coolingDown?"cooldown":""].join(" ")},__activeChanged:function(active,old ){this.__setAriaHidden(!active);this.__coolingDown=!active&&old},__altChanged:fu nction(alt){if(alt===this.getPropertyInfo("alt").value){this.alt=this.getAttribu te("aria-label")||alt}else{this.__setAriaHidden(alt==="");this.setAttribute("ari a-label",alt)}},__setAriaHidden:function(hidden){var attr="aria-hidden";if(hidde n){this.setAttribute(attr,"true")}else{this.removeAttribute(attr)}},__reset:func tion(){this.active=false;this.__coolingDown=false}};Polymer({is:"paper-spinner-l ite",behaviors:[Polymer.PaperSpinnerBehavior]});
48 // Copyright 2016 The Chromium Authors. All rights reserved. 47 // Copyright 2016 The Chromium Authors. All rights reserved.
49 // Use of this source code is governed by a BSD-style license that can be 48 // Use of this source code is governed by a BSD-style license that can be
50 // found in the LICENSE file. 49 // found in the LICENSE file.
50 Polymer({is:"cr-action-menu","extends":"dialog",options_:null,anchorElement_:nul l,onWindowResize_:null,hostAttributes:{tabindex:0},listeners:{keydown:"onKeyDown _",tap:"onTap_"},attached:function(){this.options_=this.querySelectorAll(".dropd own-item")},detached:function(){this.removeResizeListener_()},removeResizeListen er_:function(){window.removeEventListener("resize",this.onWindowResize_)},onTap_ :function(e){if(e.target==this){this.close();e.stopPropagation()}},onKeyDown_:fu nction(e){if(e.key=="Tab"||e.key=="Escape"){this.close();e.preventDefault();retu rn}if(e.key!=="ArrowDown"&&e.key!=="ArrowUp")return;var nextOption=this.getNextO ption_(e.key=="ArrowDown"?1:-1);if(nextOption)nextOption.focus();e.preventDefaul t()},getNextOption_:function(step){var counter=0;var nextOption=null;var numOpti ons=this.options_.length;var focusedIndex=Array.prototype.indexOf.call(this.opti ons_,this.root.activeElement);do{focusedIndex=(numOptions+focusedIndex+step)%num Options;nextOption=this.options_[focusedIndex];if(nextOption.disabled||nextOptio n.hidden)nextOption=null;counter++}while(!nextOption&&counter<numOptions);return nextOption},close:function(){this.removeResizeListener_();HTMLDialogElement.pro totype.close.call(this);this.anchorElement_.focus();this.anchorElement_=null},sh owAt:function(anchorElement){this.anchorElement_=anchorElement;this.onWindowResi ze_=this.onWindowResize_||function(){if(this.open)this.close()}.bind(this);windo w.addEventListener("resize",this.onWindowResize_);this.style.left="";this.style. right="";this.style.top="";this.showModal();var rect=this.anchorElement_.getBoun dingClientRect();if(getComputedStyle(this.anchorElement_).direction=="rtl"){var right=window.innerWidth-rect.left-this.offsetWidth;this.style.right=right+"px"}e lse{var left=rect.right-this.offsetWidth;this.style.left=left+"px"}var top=rect. top+this.offsetHeight<=window.innerHeight?rect.top:rect.bottom-this.offsetHeight -Math.max(rect.bottom-window.innerHeight,0);this.style.top=top+"px"}});Polymer({ is:"iron-media-query",properties:{queryMatches:{type:Boolean,value:false,readOnl y:true,notify:true},query:{type:String,observer:"queryChanged"},full:{type:Boole an,value:false},_boundMQHandler:{value:function(){return this.queryHandler.bind( this)}},_mq:{value:null}},attached:function(){this.style.display="none";this.que ryChanged()},detached:function(){this._remove()},_add:function(){if(this._mq){th is._mq.addListener(this._boundMQHandler)}},_remove:function(){if(this._mq){this. _mq.removeListener(this._boundMQHandler)}this._mq=null},queryChanged:function(){ this._remove();var query=this.query;if(!query){return}if(!this.full&&query[0]!== "("){query="("+query+")"}this._mq=window.matchMedia(query);this._add();this.quer yHandler(this._mq)},queryHandler:function(mq){this._setQueryMatches(mq.matches)} });Polymer.PaperInkyFocusBehaviorImpl={observers:["_focusedChanged(receivedFocus FromKeyboard)"],_focusedChanged:function(receivedFocusFromKeyboard){if(receivedF ocusFromKeyboard){this.ensureRipple()}if(this.hasRipple()){this._ripple.holdDown =receivedFocusFromKeyboard}},_createRipple:function(){var ripple=Polymer.PaperRi ppleBehavior._createRipple();ripple.id="ink";ripple.setAttribute("center","");ri pple.classList.add("circle");return ripple}};Polymer.PaperInkyFocusBehavior=[Pol ymer.IronButtonState,Polymer.IronControlState,Polymer.PaperRippleBehavior,Polyme r.PaperInkyFocusBehaviorImpl];Polymer({is:"paper-icon-button",hostAttributes:{ro le:"button",tabindex:"0"},behaviors:[Polymer.PaperInkyFocusBehavior],properties: {src:{type:String},icon:{type:String},alt:{type:String,observer:"_altChanged"}}, _altChanged:function(newValue,oldValue){var label=this.getAttribute("aria-label" );if(!label||oldValue==label){this.setAttribute("aria-label",newValue)}}});Polym er.PaperSpinnerBehavior={listeners:{animationend:"__reset",webkitAnimationEnd:"_ _reset"},properties:{active:{type:Boolean,value:false,reflectToAttribute:true,ob server:"__activeChanged"},alt:{type:String,value:"loading",observer:"__altChange d"},__coolingDown:{type:Boolean,value:false}},__computeContainerClasses:function (active,coolingDown){return[active||coolingDown?"active":"",coolingDown?"cooldow n":""].join(" ")},__activeChanged:function(active,old){this.__setAriaHidden(!act ive);this.__coolingDown=!active&&old},__altChanged:function(alt){if(alt===this.g etPropertyInfo("alt").value){this.alt=this.getAttribute("aria-label")||alt}else{ this.__setAriaHidden(alt==="");this.setAttribute("aria-label",alt)}},__setAriaHi dden:function(hidden){var attr="aria-hidden";if(hidden){this.setAttribute(attr," true")}else{this.removeAttribute(attr)}},__reset:function(){this.active=false;th is.__coolingDown=false}};Polymer({is:"paper-spinner-lite",behaviors:[Polymer.Pap erSpinnerBehavior]});
51 // Copyright 2016 The Chromium Authors. All rights reserved.
52 // Use of this source code is governed by a BSD-style license that can be
53 // found in the LICENSE file.
51 var CrSearchFieldBehavior={properties:{label:{type:String,value:""},clearLabel:{ type:String,value:""},hasSearchText:{type:Boolean,reflectToAttribute:true,value: false},lastValue_:{type:String,value:""}},getSearchInput:function(){},getValue:f unction(){return this.getSearchInput().value},setValue:function(value,opt_noEven t){var searchInput=this.getSearchInput();searchInput.value=value;this.onSearchTe rmInput();this.onValueChanged_(value,!!opt_noEvent)},onSearchTermSearch:function (){this.onValueChanged_(this.getValue(),false)},onSearchTermInput:function(){thi s.hasSearchText=this.$.searchInput.value!=""},onValueChanged_:function(newValue, noEvent){if(newValue==this.lastValue_)return;this.lastValue_=newValue;if(!noEven t)this.fire("search-changed",newValue)}}; 54 var CrSearchFieldBehavior={properties:{label:{type:String,value:""},clearLabel:{ type:String,value:""},hasSearchText:{type:Boolean,reflectToAttribute:true,value: false},lastValue_:{type:String,value:""}},getSearchInput:function(){},getValue:f unction(){return this.getSearchInput().value},setValue:function(value,opt_noEven t){var searchInput=this.getSearchInput();searchInput.value=value;this.onSearchTe rmInput();this.onValueChanged_(value,!!opt_noEvent)},onSearchTermSearch:function (){this.onValueChanged_(this.getValue(),false)},onSearchTermInput:function(){thi s.hasSearchText=this.$.searchInput.value!=""},onValueChanged_:function(newValue, noEvent){if(newValue==this.lastValue_)return;this.lastValue_=newValue;if(!noEven t)this.fire("search-changed",newValue)}};
52 // Copyright 2016 The Chromium Authors. All rights reserved. 55 // Copyright 2016 The Chromium Authors. All rights reserved.
53 // Use of this source code is governed by a BSD-style license that can be 56 // Use of this source code is governed by a BSD-style license that can be
54 // found in the LICENSE file. 57 // found in the LICENSE file.
55 Polymer({is:"cr-toolbar-search-field",behaviors:[CrSearchFieldBehavior],properti es:{narrow:{type:Boolean,reflectToAttribute:true},showingSearch:{type:Boolean,va lue:false,notify:true,observer:"showingSearchChanged_",reflectToAttribute:true}, label:String,clearLabel:String,spinnerActive:{type:Boolean,reflectToAttribute:tr ue},isSpinnerShown_:{type:Boolean,computed:"computeIsSpinnerShown_(spinnerActive , showingSearch)"},searchFocused_:{type:Boolean,value:false}},listeners:{click:" showSearch_"},getSearchInput:function(){return this.$.searchInput},isSearchFocus ed:function(){return this.searchFocused_},showAndFocus:function(){this.showingSe arch=true;this.focus_()},onSearchTermInput:function(){CrSearchFieldBehavior.onSe archTermInput.call(this);this.showingSearch=this.hasSearchText||this.isSearchFoc used()},focus_:function(){this.getSearchInput().focus()},computeIconTabIndex_:fu nction(narrow){return narrow?0:-1},computeIsSpinnerShown_:function(){return this .spinnerActive&&this.showingSearch},onInputFocus_:function(){this.searchFocused_ =true},onInputBlur_:function(){this.searchFocused_=false;if(!this.hasSearchText) this.showingSearch=false},onSearchTermKeydown_:function(e){if(e.key=="Escape")th is.showingSearch=false},showSearch_:function(e){if(e.target!=this.$.clearSearch) this.showingSearch=true},clearSearch_:function(e){this.setValue("");this.focus_( )},showingSearchChanged_:function(current,previous){if(previous==undefined)retur n;if(this.showingSearch){this.focus_();return}this.setValue("");this.getSearchIn put().blur()}}); 58 Polymer({is:"cr-toolbar-search-field",behaviors:[CrSearchFieldBehavior],properti es:{narrow:{type:Boolean,reflectToAttribute:true},showingSearch:{type:Boolean,va lue:false,notify:true,observer:"showingSearchChanged_",reflectToAttribute:true}, label:String,clearLabel:String,spinnerActive:{type:Boolean,reflectToAttribute:tr ue},isSpinnerShown_:{type:Boolean,computed:"computeIsSpinnerShown_(spinnerActive , showingSearch)"},searchFocused_:{type:Boolean,value:false}},listeners:{click:" showSearch_"},getSearchInput:function(){return this.$.searchInput},isSearchFocus ed:function(){return this.searchFocused_},showAndFocus:function(){this.showingSe arch=true;this.focus_()},onSearchTermInput:function(){CrSearchFieldBehavior.onSe archTermInput.call(this);this.showingSearch=this.hasSearchText||this.isSearchFoc used()},focus_:function(){this.getSearchInput().focus()},computeIconTabIndex_:fu nction(narrow){return narrow?0:-1},computeIsSpinnerShown_:function(){return this .spinnerActive&&this.showingSearch},onInputFocus_:function(){this.searchFocused_ =true},onInputBlur_:function(){this.searchFocused_=false;if(!this.hasSearchText) this.showingSearch=false},onSearchTermKeydown_:function(e){if(e.key=="Escape")th is.showingSearch=false},showSearch_:function(e){if(e.target!=this.$.clearSearch) this.showingSearch=true},clearSearch_:function(e){this.setValue("");this.focus_( )},showingSearchChanged_:function(current,previous){if(previous==undefined)retur n;if(this.showingSearch){this.focus_();return}this.setValue("");this.getSearchIn put().blur()}});
56 // Copyright 2016 The Chromium Authors. All rights reserved. 59 // Copyright 2016 The Chromium Authors. All rights reserved.
57 // Use of this source code is governed by a BSD-style license that can be 60 // Use of this source code is governed by a BSD-style license that can be
58 // found in the LICENSE file. 61 // found in the LICENSE file.
59 Polymer({is:"cr-toolbar",properties:{pageName:String,searchPrompt:String,clearLa bel:String,menuLabel:String,menuPromo:String,spinnerActive:Boolean,showMenu:{typ e:Boolean,value:false},showMenuPromo:{type:Boolean,value:false},closeMenuPromo:S tring,narrow_:{type:Boolean,reflectToAttribute:true},showingSearch_:{type:Boolea n,reflectToAttribute:true}},observers:["possiblyShowMenuPromo_(showMenu, showMen uPromo, showingSearch_)"],getSearchField:function(){return this.$.search},onClos ePromoTap_:function(){this.fire("cr-toolbar-menu-promo-close")},onMenuTap_:funct ion(){this.fire("cr-toolbar-menu-tap")},possiblyShowMenuPromo_:function(){Polyme r.RenderStatus.afterNextRender(this,function(){if(this.showMenu&&this.showMenuPr omo&&!this.showingSearch_){this.$$("#menuPromo").animate({opacity:[0,.9]},{durat ion:500,fill:"forwards"});this.fire("cr-toolbar-menu-promo-shown")}}.bind(this)) },titleIfNotShowMenuPromo_:function(title,showMenuPromo){return showMenuPromo?"" :title}}); 62 Polymer({is:"cr-toolbar",properties:{pageName:String,searchPrompt:String,clearLa bel:String,menuLabel:String,menuPromo:String,spinnerActive:Boolean,showMenu:{typ e:Boolean,value:false},showMenuPromo:{type:Boolean,value:false},closeMenuPromo:S tring,narrow_:{type:Boolean,reflectToAttribute:true},showingSearch_:{type:Boolea n,reflectToAttribute:true}},observers:["possiblyShowMenuPromo_(showMenu, showMen uPromo, showingSearch_)"],getSearchField:function(){return this.$.search},onClos ePromoTap_:function(){this.fire("cr-toolbar-menu-promo-close")},onMenuTap_:funct ion(){this.fire("cr-toolbar-menu-tap")},possiblyShowMenuPromo_:function(){Polyme r.RenderStatus.afterNextRender(this,function(){if(this.showMenu&&this.showMenuPr omo&&!this.showingSearch_){this.$$("#menuPromo").animate({opacity:[0,.9]},{durat ion:500,fill:"forwards"});this.fire("cr-toolbar-menu-promo-shown")}}.bind(this)) },titleIfNotShowMenuPromo_:function(title,showMenuPromo){return showMenuPromo?"" :title}});
60 // Copyright 2015 The Chromium Authors. All rights reserved. 63 // Copyright 2015 The Chromium Authors. All rights reserved.
61 // Use of this source code is governed by a BSD-style license that can be 64 // Use of this source code is governed by a BSD-style license that can be
62 // found in the LICENSE file. 65 // found in the LICENSE file.
63 cr.define("downloads",function(){var Toolbar=Polymer({is:"downloads-toolbar",pro perties:{downloadsShowing:{reflectToAttribute:true,type:Boolean,value:false,obse rver:"downloadsShowingChanged_"},spinnerActive:{type:Boolean,notify:true}},liste ners:{"paper-dropdown-close":"onPaperDropdownClose_","paper-dropdown-open":"onPa perDropdownOpen_"},canUndo:function(){return!this.$.toolbar.getSearchField().isS earchFocused()},canClearAll:function(){return!this.$.toolbar.getSearchField().ge tValue()&&this.downloadsShowing},onFindCommand:function(){this.$.toolbar.getSear chField().showAndFocus()},closeMoreActions_:function(){this.$.more.close()},down loadsShowingChanged_:function(){this.updateClearAll_()},onClearAllTap_:function( ){assert(this.canClearAll());downloads.ActionService.getInstance().clearAll()},o nPaperDropdownClose_:function(){window.removeEventListener("resize",assert(this. boundClose_))},onItemBlur_:function(e){var menu=this.$$("paper-menu");if(menu.it ems.indexOf(e.relatedTarget)>=0)return;this.$.more.restoreFocusOnClose=false;thi s.closeMoreActions_();this.$.more.restoreFocusOnClose=true},onPaperDropdownOpen_ :function(){this.boundClose_=this.boundClose_||this.closeMoreActions_.bind(this) ;window.addEventListener("resize",this.boundClose_)},onSearchChanged_:function(e vent){var actionService=downloads.ActionService.getInstance();if(actionService.s earch(event.detail))this.spinnerActive=actionService.isSearching();this.updateCl earAll_()},onOpenDownloadsFolderTap_:function(){downloads.ActionService.getInsta nce().openDownloadsFolder()},updateClearAll_:function(){this.$$("paper-menu .cle ar-all").hidden=!this.canClearAll()}});return{Toolbar:Toolbar}}); 66 cr.define("downloads",function(){var Toolbar=Polymer({is:"downloads-toolbar",pro perties:{downloadsShowing:{reflectToAttribute:true,type:Boolean,value:false,obse rver:"downloadsShowingChanged_"},spinnerActive:{type:Boolean,notify:true}},canUn do:function(){return!this.$.toolbar.getSearchField().isSearchFocused()},canClear All:function(){return!this.$.toolbar.getSearchField().getValue()&&this.downloads Showing},onFindCommand:function(){this.$.toolbar.getSearchField().showAndFocus() },downloadsShowingChanged_:function(){this.updateClearAll_()},onClearAllTap_:fun ction(){assert(this.canClearAll());downloads.ActionService.getInstance().clearAl l();this.$.moreActionsMenu.close()},onMoreActionsTap_:function(){this.$.moreActi onsMenu.showAt(this.$.moreActions)},onSearchChanged_:function(event){var actionS ervice=downloads.ActionService.getInstance();if(actionService.search(event.detai l))this.spinnerActive=actionService.isSearching();this.updateClearAll_()},onOpen DownloadsFolderTap_:function(){downloads.ActionService.getInstance().openDownloa dsFolder();this.$.moreActionsMenu.close()},updateClearAll_:function(){this.$$(". clear-all").hidden=!this.canClearAll()}});return{Toolbar:Toolbar}});
64 // Copyright 2015 The Chromium Authors. All rights reserved. 67 // Copyright 2015 The Chromium Authors. All rights reserved.
65 // Use of this source code is governed by a BSD-style license that can be 68 // Use of this source code is governed by a BSD-style license that can be
66 // found in the LICENSE file. 69 // found in the LICENSE file.
67 cr.define("downloads",function(){var Manager=Polymer({is:"downloads-manager",pro perties:{hasDownloads_:{observer:"hasDownloadsChanged_",type:Boolean},hasShadow_ :{type:Boolean,value:false,reflectToAttribute:true},inSearchMode_:{type:Boolean, value:false},items_:{type:Array,value:function(){return[]}},spinnerActive_:{type :Boolean,notify:true}},hostAttributes:{loading:true},listeners:{"downloads-list. scroll":"onListScroll_","toolbar.search-changed":"onSearchChanged_"},observers:[ "itemsChanged_(items_.*)"],loaded_:new PromiseResolver,clearAll_:function(){this .set("items_",[])},hasDownloadsChanged_:function(){if(loadTimeData.getBoolean("a llowDeletingHistory"))this.$.toolbar.downloadsShowing=this.hasDownloads_;if(this .hasDownloads_)this.$["downloads-list"].fire("iron-resize")},insertItems_:functi on(index,list){this.splice.apply(this,["items_",index,0].concat(list));this.upda teHideDates_(index,index+list.length);if(this.hasAttribute("loading")){this.remo veAttribute("loading");this.loaded_.resolve()}this.spinnerActive_=false},itemsCh anged_:function(){this.hasDownloads_=this.items_.length>0},noDownloadsText_:func tion(){return loadTimeData.getString(this.inSearchMode_?"noSearchResults":"noDow nloads")},onCanExecute_:function(e){e=e;switch(e.command.id){case"undo-command": e.canExecute=this.$.toolbar.canUndo();break;case"clear-all-command":e.canExecute =this.$.toolbar.canClearAll();break;case"find-command":e.canExecute=true;break}} ,onCommand_:function(e){if(e.command.id=="clear-all-command")downloads.ActionSer vice.getInstance().clearAll();else if(e.command.id=="undo-command")downloads.Act ionService.getInstance().undo();else if(e.command.id=="find-command")this.$.tool bar.onFindCommand()},onListScroll_:function(){var list=this.$["downloads-list"]; if(list.scrollHeight-list.scrollTop-list.offsetHeight<=100){downloads.ActionServ ice.getInstance().loadMore()}this.hasShadow_=list.scrollTop>0},onLoad_:function( ){cr.ui.decorate("command",cr.ui.Command);document.addEventListener("canExecute" ,this.onCanExecute_.bind(this));document.addEventListener("command",this.onComma nd_.bind(this));downloads.ActionService.getInstance().loadMore();return this.loa ded_.promise},onSearchChanged_:function(){this.inSearchMode_=downloads.ActionSer vice.getInstance().isSearching()},removeItem_:function(index){this.splice("items _",index,1);this.updateHideDates_(index,index);this.onListScroll_()},updateHideD ates_:function(start,end){for(var i=start;i<=end;++i){var current=this.items_[i] ;if(!current)continue;var prev=this.items_[i-1];var hideDate=!!prev&&prev.date_s tring==current.date_string;this.set("items_."+i+".hideDate",hideDate)}},updateIt em_:function(index,data){this.set("items_."+index,data);this.updateHideDates_(in dex,index);var list=this.$["downloads-list"];list.updateSizeForItem(index)}});Ma nager.clearAll=function(){Manager.get().clearAll_()};Manager.get=function(){retu rn queryRequiredElement("downloads-manager")};Manager.insertItems=function(index ,list){Manager.get().insertItems_(index,list)};Manager.onLoad=function(){return Manager.get().onLoad_()};Manager.removeItem=function(index){Manager.get().remove Item_(index)};Manager.updateItem=function(index,data){Manager.get().updateItem_( index,data)};return{Manager:Manager}}); 70 cr.define("downloads",function(){var Manager=Polymer({is:"downloads-manager",pro perties:{hasDownloads_:{observer:"hasDownloadsChanged_",type:Boolean},hasShadow_ :{type:Boolean,value:false,reflectToAttribute:true},inSearchMode_:{type:Boolean, value:false},items_:{type:Array,value:function(){return[]}},spinnerActive_:{type :Boolean,notify:true}},hostAttributes:{loading:true},listeners:{"downloads-list. scroll":"onListScroll_","toolbar.search-changed":"onSearchChanged_"},observers:[ "itemsChanged_(items_.*)"],loaded_:new PromiseResolver,clearAll_:function(){this .set("items_",[])},hasDownloadsChanged_:function(){if(loadTimeData.getBoolean("a llowDeletingHistory"))this.$.toolbar.downloadsShowing=this.hasDownloads_;if(this .hasDownloads_)this.$["downloads-list"].fire("iron-resize")},insertItems_:functi on(index,list){this.splice.apply(this,["items_",index,0].concat(list));this.upda teHideDates_(index,index+list.length);if(this.hasAttribute("loading")){this.remo veAttribute("loading");this.loaded_.resolve()}this.spinnerActive_=false},itemsCh anged_:function(){this.hasDownloads_=this.items_.length>0},noDownloadsText_:func tion(){return loadTimeData.getString(this.inSearchMode_?"noSearchResults":"noDow nloads")},onCanExecute_:function(e){e=e;switch(e.command.id){case"undo-command": e.canExecute=this.$.toolbar.canUndo();break;case"clear-all-command":e.canExecute =this.$.toolbar.canClearAll();break;case"find-command":e.canExecute=true;break}} ,onCommand_:function(e){if(e.command.id=="clear-all-command")downloads.ActionSer vice.getInstance().clearAll();else if(e.command.id=="undo-command")downloads.Act ionService.getInstance().undo();else if(e.command.id=="find-command")this.$.tool bar.onFindCommand()},onListScroll_:function(){var list=this.$["downloads-list"]; if(list.scrollHeight-list.scrollTop-list.offsetHeight<=100){downloads.ActionServ ice.getInstance().loadMore()}this.hasShadow_=list.scrollTop>0},onLoad_:function( ){cr.ui.decorate("command",cr.ui.Command);document.addEventListener("canExecute" ,this.onCanExecute_.bind(this));document.addEventListener("command",this.onComma nd_.bind(this));downloads.ActionService.getInstance().loadMore();return this.loa ded_.promise},onSearchChanged_:function(){this.inSearchMode_=downloads.ActionSer vice.getInstance().isSearching()},removeItem_:function(index){this.splice("items _",index,1);this.updateHideDates_(index,index);this.onListScroll_()},updateHideD ates_:function(start,end){for(var i=start;i<=end;++i){var current=this.items_[i] ;if(!current)continue;var prev=this.items_[i-1];var hideDate=!!prev&&prev.date_s tring==current.date_string;this.set("items_."+i+".hideDate",hideDate)}},updateIt em_:function(index,data){this.set("items_."+index,data);this.updateHideDates_(in dex,index);var list=this.$["downloads-list"];list.updateSizeForItem(index)}});Ma nager.clearAll=function(){Manager.get().clearAll_()};Manager.get=function(){retu rn queryRequiredElement("downloads-manager")};Manager.insertItems=function(index ,list){Manager.get().insertItems_(index,list)};Manager.onLoad=function(){return Manager.get().onLoad_()};Manager.removeItem=function(index){Manager.get().remove Item_(index)};Manager.updateItem=function(index,data){Manager.get().updateItem_( index,data)};return{Manager:Manager}});
68 // Copyright 2015 The Chromium Authors. All rights reserved. 71 // Copyright 2015 The Chromium Authors. All rights reserved.
69 // Use of this source code is governed by a BSD-style license that can be 72 // Use of this source code is governed by a BSD-style license that can be
70 // found in the LICENSE file. 73 // found in the LICENSE file.
71 window.addEventListener("load",function(){downloads.Manager.onLoad().then(functi on(){requestIdleCallback(function(){chrome.send("metricsHandler:recordTime",["Do wnload.ResultsRenderedTime",window.performance.now()]);document.fonts.load("bold 12px Roboto")})})}); 74 window.addEventListener("load",function(){downloads.Manager.onLoad().then(functi on(){requestIdleCallback(function(){chrome.send("metricsHandler:recordTime",["Do wnload.ResultsRenderedTime",window.performance.now()]);document.fonts.load("bold 12px Roboto")})})});
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/compiled_resources2.gyp ('k') | chrome/browser/resources/md_downloads/toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698