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

Side by Side Diff: chrome/browser/resources/media_router/externs.js

Issue 2096733002: Fix the bug where focus jumps around on the media router sink list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add selectIndex to externs.js Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 4
5 /** 5 /**
6 * @fileoverview Externs to be declared to properly compile JS code. 6 * @fileoverview Externs to be declared to properly compile JS code.
7 * @externs 7 * @externs
8 */ 8 */
9 9
10 var performance = {}; 10 var performance = {};
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 */ 56 */
57 Animation.prototype.finished; 57 Animation.prototype.finished;
58 58
59 document.timeline = {}; 59 document.timeline = {};
60 60
61 /** 61 /**
62 * @param {!AnimationEffect} effect 62 * @param {!AnimationEffect} effect
63 * @return {!Animation} 63 * @return {!Animation}
64 */ 64 */
65 document.timeline.play = function(effect) {}; 65 document.timeline.play = function(effect) {};
66
67 /**
68 * @param {!number} index
69 * @return {undefined}
70 */
71 Element.prototype.selectIndex = function(index) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698