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

Side by Side Diff: chrome/browser/resources/settings/privacy_page/privacy_page.html

Issue 2303093003: MD Settings: Internet: Enable SIM unlock with no cellular network (Closed)
Patch Set: Rebase plus Feedback Created 4 years, 3 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 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html"> 1 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
7 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html"> 7 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html">
8 <link rel="import" href="/controls/settings_checkbox.html"> 8 <link rel="import" href="/controls/settings_checkbox.html">
9 <link rel="import" href="/route.html"> 9 <link rel="import" href="/route.html">
10 <link rel="import" href="/settings_page/settings_animated_pages.html"> 10 <link rel="import" href="/settings_page/settings_animated_pages.html">
(...skipping 26 matching lines...) Expand all
37 37
38 #metricsReportingCheckbox { 38 #metricsReportingCheckbox {
39 display: inline-block; 39 display: inline-block;
40 } 40 }
41 41
42 #metricsReporting paper-tooltip { 42 #metricsReporting paper-tooltip {
43 --paper-tooltip: var(--cr-policy-tooltip); 43 --paper-tooltip: var(--cr-policy-tooltip);
44 } 44 }
45 45
46 #indicator { 46 #indicator {
47 -webkit-margin-start: var(--checkbox-spacing); 47 -webkit-margin-start: var(--settings-checkbox-spacing);
48 } 48 }
49 </style> 49 </style>
50 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp> 50 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp>
51 <settings-clear-browsing-data-dialog prefs="{{prefs}}" 51 <settings-clear-browsing-data-dialog prefs="{{prefs}}"
52 on-close="onDialogClosed_"> 52 on-close="onDialogClosed_">
53 </settings-clear-browsing-data-dialog> 53 </settings-clear-browsing-data-dialog>
54 </template> 54 </template>
55 <settings-animated-pages id="pages" section="privacy"> 55 <settings-animated-pages id="pages" section="privacy">
56 <neon-animatable route-path="default"> 56 <neon-animatable route-path="default">
57 <div class="settings-box block first"> 57 <div class="settings-box block first">
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 </template> 300 </template>
301 <template is="dom-if" route-path="/siteSettings/siteDetails" no-search> 301 <template is="dom-if" route-path="/siteSettings/siteDetails" no-search>
302 <settings-subpage page-title="[[selectedSite.originForDisplay]]"> 302 <settings-subpage page-title="[[selectedSite.originForDisplay]]">
303 <site-details site="[[selectedSite]]"></site-details> 303 <site-details site="[[selectedSite]]"></site-details>
304 </settings-subpage> 304 </settings-subpage>
305 </template> 305 </template>
306 </settings-animated-pages> 306 </settings-animated-pages>
307 </template> 307 </template>
308 <script src="privacy_page.js"></script> 308 <script src="privacy_page.js"></script>
309 </dom-module> 309 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698