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

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

Issue 771003002: Add support for deferring app initialization when testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years 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 <!-- 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 class="full-height"> 8 <html class="full-height">
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
(...skipping 15 matching lines...) Expand all
26 26
27 <meta-include src="webapp/crd/html/window_frame.html"/> 27 <meta-include src="webapp/crd/html/window_frame.html"/>
28 28
29 <div class="window-body full-height"> 29 <div class="window-body full-height">
30 30
31 <!-- loading-mode is initially visible, but becomes hidden as soon as an 31 <!-- loading-mode is initially visible, but becomes hidden as soon as an
32 AppMode is selected by remoting.init. All other divs are initially 32 AppMode is selected by remoting.init. All other divs are initially
33 hidden, but are shown appropriately when the mode changes. --> 33 hidden, but are shown appropriately when the mode changes. -->
34 <section id="loading-mode" data-ui-mode=""> 34 <section id="loading-mode" data-ui-mode="">
35 <em>Loading&hellip;</em> 35 <em>Loading&hellip;</em>
36 <div id="browser-test-deferred-init" hidden>
37 <p>
38 Running in test mode. If you are seeing this message in any other
39 context, please <a href="http://crbug.com" target="_blank">file a
40 bug</a>.
41 </p>
42 <p>
43 <button id="browser-test-continue-init">Continue</button>
44 </p>
36 </section> 45 </section>
37 46
38 <div id="daemon-plugin-container"></div> 47 <div id="daemon-plugin-container"></div>
39 <div id="host-plugin-container"></div> 48 <div id="host-plugin-container"></div>
40 49
41 <iframe id="wcs-sandbox" src="wcs_sandbox.html" hidden></iframe> 50 <iframe id="wcs-sandbox" src="wcs_sandbox.html" hidden></iframe>
42 51
43 <div id="scroller"> 52 <div id="scroller">
44 <div class="inset home-screen full-height" 53 <div class="inset home-screen full-height"
45 data-ui-mode="home" 54 data-ui-mode="home"
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 <meta-include src="webapp/crd/html/dialog_connection_history.html"/> 111 <meta-include src="webapp/crd/html/dialog_connection_history.html"/>
103 <meta-include src="webapp/crd/html/dialog_confirm_host_delete.html"/> 112 <meta-include src="webapp/crd/html/dialog_confirm_host_delete.html"/>
104 <meta-include src="webapp/crd/html/dialog_manage_pairings.html"/> 113 <meta-include src="webapp/crd/html/dialog_manage_pairings.html"/>
105 114
106 </div> <!-- dialog-container --> 115 </div> <!-- dialog-container -->
107 116
108 </div> <!-- window-body --> 117 </div> <!-- window-body -->
109 118
110 </body> 119 </body>
111 </html> 120 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698