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

Side by Side Diff: chrome/browser/resources/settings/site_settings/pdf_documents.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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
2 <link rel="import" href="../controls/settings_toggle_button.html"> 3 <link rel="import" href="../controls/settings_toggle_button.html">
3 <link rel="import" href="../settings_shared_css.html"> 4 <link rel="import" href="../settings_shared_css.html">
4 5
5 <dom-module id="settings-pdf-documents"> 6 <dom-module id="settings-pdf-documents">
6 <template> 7 <template>
7 <style include="settings-shared"> 8 <style include="settings-shared">
8 .secondary { 9 .secondary {
9 margin-top: 0; /* Cancel separation between main and secondary text. */ 10 margin-top: 0; /* Cancel separation between main and secondary text. */
10 } 11 }
11 </style> 12 </style>
12 <div class="settings-box first two-line"> 13 <div class="settings-box first two-line">
13 <settings-toggle-button id="toggle" class="start" 14 <settings-toggle-button id="toggle" class="start"
14 label="$i18n{siteSettingsPdfDownloadPdfs}" 15 label="$i18n{siteSettingsPdfDownloadPdfs}"
15 pref="{{prefs.plugins.always_open_pdf_externally}}"> 16 pref="{{prefs.plugins.always_open_pdf_externally}}">
16 </settings-toggle-button> 17 </settings-toggle-button>
17 </div> 18 </div>
18 </template> 19 </template>
19 <script src="pdf_documents.js"></script> 20 <script src="pdf_documents.js"></script>
20 </dom-module> 21 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698