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

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

Issue 2225933002: Suppress ToS and reflect admin policy in ARC++ welcome screen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add OS_CHROMEOS checks 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="stylesheet" href="chrome://resources/css/bubble_button.css">
6 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> 7 <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"> 8 <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"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html">
8 <style is="custom-style"> 10 <style is="custom-style">
9 paper-progress { 11 paper-progress {
10 display: block; 12 display: block;
11 margin: auto; 13 margin: auto;
12 padding: 112px 0 0 0; 14 padding: 112px 0 0 0;
13 width: 360px; 15 width: 360px;
14 } 16 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <paper-progress class="blue" indeterminate></paper-progress> 53 <paper-progress class="blue" indeterminate></paper-progress>
52 </div> 54 </div>
53 </div> 55 </div>
54 </div> 56 </div>
55 <div id="terms" class="section" hidden> 57 <div id="terms" class="section" hidden>
56 <img class="image-header" src="images/header.png"> 58 <img class="image-header" src="images/header.png">
57 <div class="scrollable" > 59 <div class="scrollable" >
58 <div class="content section-flex"> 60 <div class="content section-flex">
59 <p class="text-title" i18n-content="greetingHeader"></p> 61 <p class="text-title" i18n-content="greetingHeader"></p>
60 <p class="text-desc" i18n-content="greetingDescription"></p> 62 <p class="text-desc" i18n-content="greetingDescription"></p>
61 <p class="text-terms-title" i18n-content="termsOfService"></p> 63 <p class="text-terms-title" id="terms-title" i18n-content="termsOfServic e"></p>
62 <div class="section-terms" id ="terms-container"> 64 <div class="section-terms" id ="terms-container">
63 <webview id="terms-view" partition="persist:arc_support"></webview> 65 <webview id="terms-view" partition="persist:arc_support"></webview>
64 </div> 66 </div>
65 <label class="layout horizontal section-checkbox-container"> 67 <label class="layout horizontal section-checkbox-container">
66 <div class="checkbox-container" id="enable-metrics-container" hidden> 68 <div class="checkbox-container" id="enable-metrics-container" hidden>
67 <input type="checkbox" class="checkbox-option" id="enable-metrics"> 69 <input type="checkbox" class="checkbox-option" id="enable-metrics">
68 </div> 70 </div>
69 <p class="checkbox-text" id="text-metrics"></p> 71 <p class="checkbox-text" id="text-metrics"></p>
70 </label> 72 </label>
71 <label class="layout horizontal section-checkbox-container"> 73 <label class="layout horizontal section-checkbox-container">
72 <div class="checkbox-container"> 74 <div class="checkbox-container">
73 <input type="checkbox" class="checkbox-option" 75 <input type="checkbox" class="checkbox-option"
74 id="enable-backup-restore"> 76 id="enable-backup-restore">
75 </div> 77 </div>
76 <p class="checkbox-text" id="text-backup-restore"></p> 78 <p class="checkbox-text" id="text-backup-restore"></p>
79 <span class="bubble-button controlled-setting-indicator"
80 style="display: none"
81 id="backup-management-indicator"
82 pref="arc.backup_restore.enabled"
83 controlled-by="policy">
84 <div></div>
85 </span>
77 </label> 86 </label>
78 <label class="layout horizontal section-checkbox-container"> 87 <label class="layout horizontal section-checkbox-container">
79 <div class="checkbox-container"> 88 <div class="checkbox-container">
80 <input type="checkbox" class="checkbox-option" 89 <input type="checkbox" class="checkbox-option"
81 id="enable-location-service"> 90 id="enable-location-service">
82 </div> 91 </div>
83 <p class="checkbox-text" id="text-location-service"></p> 92 <p class="checkbox-text" id="text-location-service"></p>
93 <span class="bubble-button controlled-setting-indicator"
94 style="display: none"
95 id="location-management-indicator"
96 pref="arc.location_service.enabled"
97 controlled-by="policy">
98 <div></div>
99 </span>
84 </label> 100 </label>
85 <div class="layout horizontal end-justified section-buttons"> 101 <div class="layout horizontal end-justified section-buttons">
86 <paper-button class="white" id="button-cancel" 102 <paper-button class="white" id="button-cancel"
87 i18n-content="buttonCancel"> 103 i18n-content="buttonCancel">
88 </paper-button> 104 </paper-button>
89 <div class="button-separator"></div> 105 <div class="button-separator"></div>
90 <paper-button class="blue" id="button-agree" 106 <paper-button class="blue" id="button-agree"
91 i18n-content="buttonAgree"> 107 i18n-content="buttonAgree">
92 </paper-button> 108 </paper-button>
93 </div> 109 </div>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 <paper-button class="blue" id="button-send-feedback" 141 <paper-button class="blue" id="button-send-feedback"
126 i18n-content="buttonSendFeedback"> 142 i18n-content="buttonSendFeedback">
127 </paper-button> 143 </paper-button>
128 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> 144 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry">
129 </paper-button> 145 </paper-button>
130 </div> 146 </div>
131 </div> 147 </div>
132 </div> 148 </div>
133 </body> 149 </body>
134 </html> 150 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698