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

Side by Side Diff: chrome/browser/resources/chromeos/arc_support/main.html

Issue 2450823002: Remove async load concept for ToS from native code. (Closed)
Patch Set: Address comments. Created 4 years, 1 month 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
« no previous file with comments | « chrome/browser/resources/chromeos/arc_support/background.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
5 <link rel="stylesheet" href="chrome://resources/css/bubble.css"> 5 <link rel="stylesheet" href="chrome://resources/css/bubble.css">
6 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css"> 6 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css">
7 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css"> 7 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css">
8 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> 8 <link rel="stylesheet" href="chrome://resources/css/overlay.css">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper- progress.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper- progress.html">
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 <script src="chrome://resources/js/i18n_template_no_process.js"></script> 46 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
47 <script src="chrome://resources/js/cr.js"></script> 47 <script src="chrome://resources/js/cr.js"></script>
48 <script src="chrome://resources/js/event_tracker.js"></script> 48 <script src="chrome://resources/js/event_tracker.js"></script>
49 <script src="chrome://resources/js/cr/ui.js"></script> 49 <script src="chrome://resources/js/cr/ui.js"></script>
50 <script src="chrome://resources/js/cr/ui/bubble.js"></script> 50 <script src="chrome://resources/js/cr/ui/bubble.js"></script>
51 <script src="chrome://resources/js/cr/ui/bubble_button.js"></script> 51 <script src="chrome://resources/js/cr/ui/bubble_button.js"></script>
52 <script src="chrome://resources/js/cr/ui/controlled_indicator.js"></script> 52 <script src="chrome://resources/js/cr/ui/controlled_indicator.js"></script>
53 <script src="chrome://resources/js/cr/ui/overlay.js"></script> 53 <script src="chrome://resources/js/cr/ui/overlay.js"></script>
54 </head> 54 </head>
55 <body> 55 <body>
56 <div id="terms-loading" class="section"> 56 <div id="terms" class="section">
57 <img class="image-header" src="images/header.png"> 57 <img class="image-header" src="images/header.png">
58 <div class="scrollable"> 58 <div class="scrollable" id="terms-of-service-loading">
59 <div class="content"> 59 <div class="content">
60 <p class="text-title" i18n-content="greetingHeader"></p> 60 <p class="text-title" i18n-content="greetingHeader"></p>
61 <p class="text-desc" i18n-content="greetingDescription"></p> 61 <p class="text-desc" i18n-content="greetingDescription"></p>
62 <paper-progress class="blue" indeterminate></paper-progress> 62 <paper-progress class="blue" indeterminate></paper-progress>
63 </div> 63 </div>
64 </div> 64 </div>
65 </div> 65 <div class="scrollable" id="terms-of-service-content" hidden>
66 <div id="terms" class="section" hidden>
67 <img class="image-header" src="images/header.png">
68 <div class="scrollable" >
69 <div class="content section-flex"> 66 <div class="content section-flex">
70 <p class="text-title" i18n-content="greetingHeader"></p> 67 <p class="text-title" i18n-content="greetingHeader"></p>
71 <p class="text-desc" i18n-content="greetingDescription"></p> 68 <p class="text-desc" i18n-content="greetingDescription"></p>
72 <p class="text-terms-title" id="terms-title" 69 <p class="text-terms-title" id="terms-title"
73 i18n-content="termsOfService"></p> 70 i18n-content="termsOfService"></p>
74 <div class="section-terms" id ="terms-container"> 71 <div class="section-terms" id ="terms-container">
75 <webview id="terms-view" partition="persist:arc_support"></webview> 72 <webview id="terms-view" partition="persist:arc_support"></webview>
76 </div> 73 </div>
77 <div id="metrics-preference"> 74 <div id="metrics-preference">
78 <label class="layout horizontal section-checkbox-container"> 75 <label class="layout horizontal section-checkbox-container">
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 <div class="button-strip"> 156 <div class="button-strip">
160 <button id="overlay-close" i18n-content="overlayClose"> 157 <button id="overlay-close" i18n-content="overlayClose">
161 </button> 158 </button>
162 </div> 159 </div>
163 </div> 160 </div>
164 </div> 161 </div>
165 </div> 162 </div>
166 </div> 163 </div>
167 </body> 164 </body>
168 </html> 165 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/arc_support/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698