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

Side by Side Diff: remoting/webapp/crd/html/dialog_hangout_consent.html

Issue 888323002: Improve HRD first run experience (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 <!doctype html>
2 <!--
3 Copyright 2014 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>
9 <head>
10 <meta charset="utf-8">
11 <link rel="icon" type="image/png" href="chromoting16.webp">
Jamie 2015/02/02 19:07:40 Is this the right icon (ie, should this window be
kelvinp 2015/02/03 01:15:32 Removed as we create the window with frame:none.
12 <link rel="stylesheet" href="dialog_hangout_consent.css">
13 <script type="text/javascript" src="base.js"></script>
14 <script type="text/javascript" src="hangout_consent_dialog_main.js"></script >
15 <script type="text/javascript" src="ipc.js"></script>
16 <script type="text/javascript" src="l10n.js"></script>
17 </head>
18 <body>
19 <div class="header">
20 <div class="logo"></div>
21 <div class="title" i18n-content="MODE_IT2ME"></div>
22 </div>
23 <div class="content">
24 <div class="message" i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_1"></di v>
25 <ul>
26 <li i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_2"></li>
27 <li i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_3"></li>
28 <li i18n-content="DESCRIPTION_AUTHORIZE" class='auth-message'></li>
29 </ul>
30 <div class="footer">
31 <div class="button default ok-button" i18n-content="HANGOUTS_CONFIRM_DIA LOG_ACCEPT"></div>
32 <div class="button cancel-button" i18n-content="HANGOUTS_CONFIRM_DIALOG_ DECLINE"></div>
33 </div>
34 </div>
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698