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

Side by Side Diff: chrome/browser/resources/media_router/elements/route_controls/route_controls_interface.js

Issue 2725503002: [Media Router] Custom Controls 4 - Implement details view WebUI (Closed)
Patch Set: Add braces to @implements {Interface} Created 3 years, 7 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * Interface for the Polymer element that shows media controls for a route that
7 * is currently cast to a device.
8 * @record
9 */
10 function RouteControlsInterface() {}
11
12 /**
13 * @type {!media_router.RouteStatus}
14 */
15 RouteControlsInterface.prototype.routeStatus;
16
17 /**
18 * Resets the route controls. Called when the route details view is closed.
19 */
20 RouteControlsInterface.prototype.reset = function() {};
21
22 /**
23 * Called when the route is updated. Updates the description shown if it has
24 * not been provided by status updates.
25 * @param {!media_router.Route} route
26 */
27 RouteControlsInterface.prototype.onRouteUpdated = function(route) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698