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

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

Issue 2235293002: arc: Support managed Arc and managed Location Service and B&R consents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2225933002_managed_BR_LOC
Patch Set: update Created 4 years, 4 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
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="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper- progress.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper- progress.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html">
8 <style is="custom-style"> 8 <style is="custom-style">
9 paper-progress { 9 paper-progress {
10 display: block; 10 display: block;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <paper-progress class="blue" indeterminate></paper-progress> 51 <paper-progress class="blue" indeterminate></paper-progress>
52 </div> 52 </div>
53 </div> 53 </div>
54 </div> 54 </div>
55 <div id="terms" class="section" hidden> 55 <div id="terms" class="section" hidden>
56 <img class="image-header" src="images/header.png"> 56 <img class="image-header" src="images/header.png">
57 <div class="scrollable" > 57 <div class="scrollable" >
58 <div class="content section-flex"> 58 <div class="content section-flex">
59 <p class="text-title" i18n-content="greetingHeader"></p> 59 <p class="text-title" i18n-content="greetingHeader"></p>
60 <p class="text-desc" i18n-content="greetingDescription"></p> 60 <p class="text-desc" i18n-content="greetingDescription"></p>
61 <p class="text-terms-title" i18n-content="termsOfService"></p> 61 <p class="text-terms-title" id="terms-title" i18n-content="termsOfServic e"></p>
xiyuan 2016/08/11 20:01:11 nit: wrap
khmel 2016/08/12 20:33:23 Done.
62 <div class="section-terms" id ="terms-container"> 62 <div class="section-terms" id ="terms-container">
63 <webview id="terms-view" partition="persist:arc_support"></webview> 63 <webview id="terms-view" partition="persist:arc_support"></webview>
64 </div> 64 </div>
65 <label class="layout horizontal section-checkbox-container"> 65 <label class="layout horizontal section-checkbox-container">
66 <div class="checkbox-container" id="enable-metrics-container" hidden> 66 <div class="checkbox-container" id="enable-metrics-container" hidden>
67 <input type="checkbox" class="checkbox-option" id="enable-metrics"> 67 <input type="checkbox" class="checkbox-option" id="enable-metrics">
68 </div> 68 </div>
69 <p class="checkbox-text" id="text-metrics"></p> 69 <p class="checkbox-text" id="text-metrics"></p>
70 </label> 70 </label>
71 <label class="layout horizontal section-checkbox-container"> 71 <label class="layout horizontal section-checkbox-container">
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 <paper-button class="blue" id="button-send-feedback" 125 <paper-button class="blue" id="button-send-feedback"
126 i18n-content="buttonSendFeedback"> 126 i18n-content="buttonSendFeedback">
127 </paper-button> 127 </paper-button>
128 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> 128 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry">
129 </paper-button> 129 </paper-button>
130 </div> 130 </div>
131 </div> 131 </div>
132 </div> 132 </div>
133 </body> 133 </body>
134 </html> 134 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698