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

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

Issue 2143823002: MD Settings: Bluetooth: Show policy indicator when disabled by policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_602538_bluetooth_fixes_1
Patch Set: Fix tests Created 4 years, 5 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="/a11y_page/a11y_page.html"> 2 <link rel="import" href="/a11y_page/a11y_page.html">
3 <link rel="import" href="/downloads_page/downloads_page.html"> 3 <link rel="import" href="/downloads_page/downloads_page.html">
4 <link rel="import" href="/languages_page/languages_page.html"> 4 <link rel="import" href="/languages_page/languages_page.html">
5 <link rel="import" href="/passwords_and_forms_page/passwords_and_forms_page.html "> 5 <link rel="import" href="/passwords_and_forms_page/passwords_and_forms_page.html ">
6 <link rel="import" href="/printing_page/printing_page.html"> 6 <link rel="import" href="/printing_page/printing_page.html">
7 <link rel="import" href="/privacy_page/privacy_page.html"> 7 <link rel="import" href="/privacy_page/privacy_page.html">
8 <link rel="import" href="/reset_page/reset_page.html"> 8 <link rel="import" href="/reset_page/reset_page.html">
9 <link rel="import" href="/settings_page/main_page_behavior.html"> 9 <link rel="import" href="/settings_page/main_page_behavior.html">
10 <link rel="import" href="/settings_page/settings_page_visibility.html"> 10 <link rel="import" href="/settings_page/settings_page_visibility.html">
(...skipping 30 matching lines...) Expand all
41 current-route="[[currentRoute]]" section="privacy"> 41 current-route="[[currentRoute]]" section="privacy">
42 <settings-privacy-page prefs="{{prefs}}" 42 <settings-privacy-page prefs="{{prefs}}"
43 current-route="{{currentRoute}}"> 43 current-route="{{currentRoute}}">
44 </settings-privacy-page> 44 </settings-privacy-page>
45 </settings-section> 45 </settings-section>
46 </template> 46 </template>
47 <if expr="chromeos"> 47 <if expr="chromeos">
48 <template is="dom-if" if="[[showPage(pageVisibility.bluetooth)]]" restamp> 48 <template is="dom-if" if="[[showPage(pageVisibility.bluetooth)]]" restamp>
49 <settings-section page-title="$i18n{bluetoothPageTitle}" 49 <settings-section page-title="$i18n{bluetoothPageTitle}"
50 current-route="[[currentRoute]]" section="bluetooth"> 50 current-route="[[currentRoute]]" section="bluetooth">
51 <settings-bluetooth-page current-route="{{currentRoute}}"> 51 <settings-bluetooth-page prefs="{{prefs}}"
52 current-route="{{currentRoute}}">
52 </settings-bluetooth-page> 53 </settings-bluetooth-page>
53 </settings-section> 54 </settings-section>
54 </template> 55 </template>
55 </if> 56 </if>
56 <template is="dom-if" if="[[showPage(pageVisibility.passwordsAndForms)]]" 57 <template is="dom-if" if="[[showPage(pageVisibility.passwordsAndForms)]]"
57 restamp> 58 restamp>
58 <settings-section 59 <settings-section
59 page-title="$i18n{passwordsAndAutofillPageTitle}" 60 page-title="$i18n{passwordsAndAutofillPageTitle}"
60 current-route="[[currentRoute]]" section="passwordsAndForms"> 61 current-route="[[currentRoute]]" section="passwordsAndForms">
61 <settings-passwords-and-forms-page prefs="{{prefs}}" 62 <settings-passwords-and-forms-page prefs="{{prefs}}"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 <template is="dom-if" if="[[showPage(pageVisibility.reset)]]" restamp> 104 <template is="dom-if" if="[[showPage(pageVisibility.reset)]]" restamp>
104 <settings-section page-title="$i18n{resetPageTitle}" 105 <settings-section page-title="$i18n{resetPageTitle}"
105 current-route="[[currentRoute]]" section="reset"> 106 current-route="[[currentRoute]]" section="reset">
106 <settings-reset-page></settings-reset-page> 107 <settings-reset-page></settings-reset-page>
107 </settings-section> 108 </settings-section>
108 </template> 109 </template>
109 </div> 110 </div>
110 </template> 111 </template>
111 <script src="/advanced_page/advanced_page.js"></script> 112 <script src="/advanced_page/advanced_page.js"></script>
112 </dom-module> 113 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698