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

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

Issue 2811573004: MD Settings: Restore focus when exiting various subpages, part 2. (Closed)
Patch Set: Device page Created 3 years, 8 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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html"> 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html"> 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html">
(...skipping 24 matching lines...) Expand all
35 35
36 <dom-module id="settings-privacy-page"> 36 <dom-module id="settings-privacy-page">
37 <template> 37 <template>
38 <style include="settings-shared"> 38 <style include="settings-shared">
39 </style> 39 </style>
40 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp> 40 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp>
41 <settings-clear-browsing-data-dialog prefs="{{prefs}}" 41 <settings-clear-browsing-data-dialog prefs="{{prefs}}"
42 on-close="onDialogClosed_"> 42 on-close="onDialogClosed_">
43 </settings-clear-browsing-data-dialog> 43 </settings-clear-browsing-data-dialog>
44 </template> 44 </template>
45 <settings-animated-pages id="pages" section="privacy"> 45 <settings-animated-pages id="pages" section="privacy"
46 focus-config="[[focusConfig_]]">
46 <neon-animatable route-path="default"> 47 <neon-animatable route-path="default">
47 <div class="settings-box first"> 48 <div class="settings-box first">
48 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p> 49 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p>
49 </div> 50 </div>
50 <div class="settings-box"> 51 <div class="settings-box">
51 <settings-toggle-button class="start" 52 <settings-toggle-button class="start"
52 pref="{{prefs.alternate_error_pages.enabled}}" 53 pref="{{prefs.alternate_error_pages.enabled}}"
53 label="$i18n{linkDoctorPref}"> 54 label="$i18n{linkDoctorPref}">
54 </settings-toggle-button> 55 </settings-toggle-button>
55 </div> 56 </div>
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 487 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
487 </category-setting-exceptions> 488 </category-setting-exceptions>
488 </template> 489 </template>
489 </if> 490 </if>
490 </settings-subpage> 491 </settings-subpage>
491 </template> 492 </template>
492 </settings-animated-pages> 493 </settings-animated-pages>
493 </template> 494 </template>
494 <script src="privacy_page.js"></script> 495 <script src="privacy_page.js"></script>
495 </dom-module> 496 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698