Chromium Code Reviews| Index: remoting/webapp/crd/html/dialog_hangout_consent.html |
| diff --git a/remoting/webapp/crd/html/dialog_hangout_consent.html b/remoting/webapp/crd/html/dialog_hangout_consent.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8acb4adc7a4b3bed7c57de902878e9c12c1d7675 |
| --- /dev/null |
| +++ b/remoting/webapp/crd/html/dialog_hangout_consent.html |
| @@ -0,0 +1,36 @@ |
| +<!doctype html> |
| +<!-- |
| +Copyright 2014 The Chromium Authors. All rights reserved. |
| +Use of this source code is governed by a BSD-style license that can be |
| +found in the LICENSE file. |
| +--> |
| + |
| +<html> |
| + <head> |
| + <meta charset="utf-8"> |
| + <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.
|
| + <link rel="stylesheet" href="dialog_hangout_consent.css"> |
| + <script type="text/javascript" src="base.js"></script> |
| + <script type="text/javascript" src="hangout_consent_dialog_main.js"></script> |
| + <script type="text/javascript" src="ipc.js"></script> |
| + <script type="text/javascript" src="l10n.js"></script> |
| + </head> |
| + <body> |
| + <div class="header"> |
| + <div class="logo"></div> |
| + <div class="title" i18n-content="MODE_IT2ME"></div> |
| + </div> |
| + <div class="content"> |
| + <div class="message" i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_1"></div> |
| + <ul> |
| + <li i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_2"></li> |
| + <li i18n-content="HANGOUTS_CONFIRM_DIALOG_MESSAGE_3"></li> |
| + <li i18n-content="DESCRIPTION_AUTHORIZE" class='auth-message'></li> |
| + </ul> |
| + <div class="footer"> |
| + <div class="button default ok-button" i18n-content="HANGOUTS_CONFIRM_DIALOG_ACCEPT"></div> |
| + <div class="button cancel-button" i18n-content="HANGOUTS_CONFIRM_DIALOG_DECLINE"></div> |
| + </div> |
| + </div> |
| + </body> |
| +</html> |