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

Side by Side Diff: remoting/webapp/main.html

Issue 12566035: Added survey butter-bar to web-app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <html> 8 <html>
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
(...skipping 25 matching lines...) Expand all
36 <script src="l10n.js"></script> 36 <script src="l10n.js"></script>
37 <script src="log_to_server.js"></script> 37 <script src="log_to_server.js"></script>
38 <script src="menu_button.js"></script> 38 <script src="menu_button.js"></script>
39 <script src="oauth2.js"></script> 39 <script src="oauth2.js"></script>
40 <script src="plugin_settings.js"></script> 40 <script src="plugin_settings.js"></script>
41 <script src="remoting.js"></script> 41 <script src="remoting.js"></script>
42 <script src="session_connector.js"></script> 42 <script src="session_connector.js"></script>
43 <script src="server_log_entry.js"></script> 43 <script src="server_log_entry.js"></script>
44 <script src="stats_accumulator.js"></script> 44 <script src="stats_accumulator.js"></script>
45 <script src="storage.js"></script> 45 <script src="storage.js"></script>
46 <script src="survey.js"></script>
46 <script src="toolbar.js"></script> 47 <script src="toolbar.js"></script>
47 <script src="ui_mode.js"></script> 48 <script src="ui_mode.js"></script>
48 <script src="xhr.js"></script> 49 <script src="xhr.js"></script>
49 <script src="wcs_sandbox_container.js"></script> 50 <script src="wcs_sandbox_container.js"></script>
50 <title i18n-content="PRODUCT_NAME"></title> 51 <title i18n-content="PRODUCT_NAME"></title>
51 </head> 52 </head>
52 53
53 <body> 54 <body>
54 55
55 <!-- loading-mode is initially visible, but becomes hidden as soon as an 56 <!-- loading-mode is initially visible, but becomes hidden as soon as an
(...skipping 20 matching lines...) Expand all
76 <!-- TODO(jamiewalch): Add this back in when we support it. 77 <!-- TODO(jamiewalch): Add this back in when we support it.
77 <a id="connection-history" 78 <a id="connection-history"
78 i18n-content="CONNECTION_HISTORY_BUTTON"></a> | 79 i18n-content="CONNECTION_HISTORY_BUTTON"></a> |
79 --> 80 -->
80 </span> 81 </span>
81 <a href="https://www.google.com/support/chrome/bin/answer.py?answer=1649 523" 82 <a href="https://www.google.com/support/chrome/bin/answer.py?answer=1649 523"
82 target="_blank" i18n-content="HELP"></a> 83 target="_blank" i18n-content="HELP"></a>
83 </div> 84 </div>
84 </header> 85 </header>
85 86
87 <div id="survey-opt-in" class="butter-bar" hidden>
88 <p>
89 <span i18n-content="SURVEY_INVITATION"></span>
90 <a id="survey-accept"
91 href="http://goo.gl/njH2q"
92 target="_blank"
93 i18n-content="SIGN_ME_UP"></a>
94 <a id="survey-decline" href="#">
95 <img src="icon_cross.webp" class="close-icon"></img>
96 </a>
97 </p>
98 </div>
99
86 <div data-ui-mode="home" hidden> 100 <div data-ui-mode="home" hidden>
87 101
88 <section> 102 <section>
89 <h2 i18n-content="MODE_IT2ME"></h2> 103 <h2 i18n-content="MODE_IT2ME"></h2>
90 <div id="it2me-first-run"> 104 <div id="it2me-first-run">
91 <div> 105 <div>
92 <p class="infographic-description" 106 <p class="infographic-description"
93 i18n-content="IT2ME_FIRST_RUN"></p> 107 i18n-content="IT2ME_FIRST_RUN"></p>
94 <button id="get-started-it2me" 108 <button id="get-started-it2me"
95 i18n-content="GET_STARTED" 109 i18n-content="GET_STARTED"
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 <div class="arrow-down"></div> 692 <div class="arrow-down"></div>
679 </div> 693 </div>
680 </div> <!-- session-toolbar --> 694 </div> <!-- session-toolbar -->
681 </div> <!-- session-mode --> 695 </div> <!-- session-mode -->
682 696
683 <div id="statistics" dir="ltr" class="selectable" hidden> 697 <div id="statistics" dir="ltr" class="selectable" hidden>
684 </div> <!-- statistics --> 698 </div> <!-- statistics -->
685 699
686 </body> 700 </body>
687 </html> 701 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698