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

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

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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="/controls/settings_toggle_button.html"> 2 <link rel="import" href="../controls/settings_toggle_button.html">
3 <link rel="import" href="/settings_shared_css.html"> 3 <link rel="import" href="../settings_shared_css.html">
4 4
5 <dom-module id="settings-pdf-documents"> 5 <dom-module id="settings-pdf-documents">
6 <template> 6 <template>
7 <style include="settings-shared"> 7 <style include="settings-shared">
8 .secondary { 8 .secondary {
9 margin-top: 0; /* Cancel separation between main and secondary text. */ 9 margin-top: 0; /* Cancel separation between main and secondary text. */
10 } 10 }
11 </style> 11 </style>
12 <div class="settings-box first two-line"> 12 <div class="settings-box first two-line">
13 <div class="start secondary"> 13 <div class="start secondary">
14 $i18n{siteSettingsPdfDifferentApplication} 14 $i18n{siteSettingsPdfDifferentApplication}
15 </div> 15 </div>
16 <settings-toggle-button id="toggle" 16 <settings-toggle-button id="toggle"
17 pref="{{prefs.plugins.always_open_pdf_externally}}"> 17 pref="{{prefs.plugins.always_open_pdf_externally}}">
18 </settings-toggle-button> 18 </settings-toggle-button>
19 </div> 19 </div>
20 </template> 20 </template>
21 <script src="pdf_documents.js"></script> 21 <script src="pdf_documents.js"></script>
22 </dom-module> 22 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698