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

Side by Side Diff: chrome/browser/resources/media_router/elements/route-details/route_details.html

Issue 1027253004: Add Media Router route-details. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
2 <polymer-element name="route-details">
3 <template>
4 <link rel="stylesheet" href="route_details.css">
5 <div>
6 <div id="back-to-devices" on-click="{{back}}">
7 &lsaquo;&nbsp; Back to device list
James Hawkins 2015/04/08 19:02:36 Are you sure we should be using &lsaquo instead of
apacible 2015/04/08 20:02:02 Talked offline, keeping as is.
8 </div>
9 <hr>
10 <div class="activity">
11 <div class="activity-description">
12 {{route.description}}
13 </div>
14 <div class="activity-status">
15 <span>{{route.isMirroring ? "Casting to" : "Playing on"}}</span>
16 <!-- TODO(apacible): Show the sink's name rather than ID -->
17 <span class="device-name">{{route.sinkId}}</span>
18 </div>
19 </div>
20 </div>
21 <div>
22 <button class="button" on-click="{{closeRoute}}">
23 Stop casting
24 </button>
25 </div>
26 </template>
27 <script src="route_details.js"></script>
28 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698