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

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

Issue 1261403002: Add paper-menu-button and its dependencies to third_party/polymer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reproduce.sh Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * @fileoverview Closure compiler externs for the Polymer library. 2 * @fileoverview Closure compiler externs for the Polymer library.
3 * 3 *
4 * @externs 4 * @externs
5 * @license 5 * @license
6 * Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 6 * Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
7 * This code may only be used under the BSD style license found at 7 * This code may only be used under the BSD style license found at
8 * http://polymer.github.io/LICENSE.txt. The complete set of authors may be 8 * http://polymer.github.io/LICENSE.txt. The complete set of authors may be
9 * found at http://polymer.github.io/AUTHORS.txt. The complete set of 9 * found at http://polymer.github.io/AUTHORS.txt. The complete set of
10 * contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt. Code 10 * contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt. Code
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 Polymer.Templatizer = { 628 Polymer.Templatizer = {
629 /** 629 /**
630 * @param {?Object} model 630 * @param {?Object} model
631 * @return {?Element} 631 * @return {?Element}
632 */ 632 */
633 stamp: function(model) {}, 633 stamp: function(model) {},
634 634
635 /** 635 /**
636 * @param {?Element} template 636 * @param {?Element} template
637 */ 637 */
638 templatize: function(template) {}, 638 templatize: function(template) {}
639 }; 639 };
640 640
641 641
642 /** 642 /**
643 * An Event type fired when moving while finger/button is down. 643 * An Event type fired when moving while finger/button is down.
644 * state - a string indicating the tracking state: 644 * state - a string indicating the tracking state:
645 * + start: fired when tracking is first detected (finger/button down and 645 * + start: fired when tracking is first detected (finger/button down and
646 * moved past a pre-set distance threshold) 646 * moved past a pre-set distance threshold)
647 * + track: fired while tracking 647 * + track: fired while tracking
648 * + end: fired when tracking ends 648 * + end: fired when tracking ends
(...skipping 25 matching lines...) Expand all
674 * y - clientY coordinate for event 674 * y - clientY coordinate for event
675 * sourceEvent - the original DOM event that caused the down action 675 * sourceEvent - the original DOM event that caused the down action
676 * 676 *
677 * @typedef {{ 677 * @typedef {{
678 * x: number, 678 * x: number,
679 * y: number, 679 * y: number,
680 * sourceEvent: Event 680 * sourceEvent: Event
681 * }} 681 * }}
682 */ 682 */
683 var PolymerTouchEvent; 683 var PolymerTouchEvent;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698