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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cloud_printers.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="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
3 <link rel="import" href="/controls/settings_toggle_button.html"> 3 <link rel="import" href="../controls/settings_toggle_button.html">
4 <link rel="import" href="/settings_shared_css.html"> 4 <link rel="import" href="../settings_shared_css.html">
5 5
6 <dom-module id="settings-cloud-printers"> 6 <dom-module id="settings-cloud-printers">
7 <template> 7 <template>
8 <style include="settings-shared"></style> 8 <style include="settings-shared"></style>
9 <div class="settings-box first"> 9 <div class="settings-box first">
10 <span> 10 <span>
11 $i18n{printingCloudPrintLearnMoreLabel} 11 $i18n{printingCloudPrintLearnMoreLabel}
12 <a href="$i18n{printingCloudPrintLearnMoreUrl}" target="_blank"> 12 <a href="$i18n{printingCloudPrintLearnMoreUrl}" target="_blank">
13 $i18n{learnMore} 13 $i18n{learnMore}
14 </a> 14 </a>
(...skipping 10 matching lines...) Expand all
25 $i18n{printingManageCloudPrintDevices} 25 $i18n{printingManageCloudPrintDevices}
26 <div class="secondary"> 26 <div class="secondary">
27 $i18n{printingManageCloudPrintDevicesDescription} 27 $i18n{printingManageCloudPrintDevicesDescription}
28 </div> 28 </div>
29 </div> 29 </div>
30 <button class="icon-external" is="paper-icon-button-light"></button> 30 <button class="icon-external" is="paper-icon-button-light"></button>
31 </div> 31 </div>
32 </template> 32 </template>
33 <script src="cloud_printers.js"></script> 33 <script src="cloud_printers.js"></script>
34 </dom-module> 34 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698