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

Side by Side Diff: components/proximity_auth/webui/resources/proximity_auth.html

Issue 1108713002: Add chrome://proximity-auth UI implemented with Polymer. (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
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!--
3 Copyright 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <html> 2 <html>
9 <head> 3 <head>
10 <meta charset="utf-8"> 4 <meta charset="utf-8">
11 <title></title> 5 <title>Proximity Auth Debug</title>
12 <meta name="viewport" 6 <meta name="viewport"
13 content="width=device-width, initial-scale=1"> 7 content="width=device-width, initial-scale=1">
14 <link rel="stylesheet" href="proximity_auth.css"> 8 <link rel="stylesheet" href="proximity_auth.css">
15 9 <link rel="import" href="content-panel.html">
16 <script src="strings.js"></script> 10 <link rel="import" href="log-panel.html">
17 </head> 11 </head>
18 <body> 12 <body layout horizontal fullbleed>
19 <canvas id='canvas'> </canvas> 13 <content-panel id='content' flex></content-panel>
20 14 <log-panel id='logs'></log-panel>
21 <script src="proximity_auth.js"></script>
22 </body> 15 </body>
23 </html> 16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698