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

Side by Side Diff: chrome/browser/resources/settings/about_page/detailed_build_info.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">
2
1 <link rel="import" href="chrome://resources/html/assert.html"> 3 <link rel="import" href="chrome://resources/html/assert.html">
2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="about_page_browser_proxy.html"> 5 <link rel="import" href="about_page_browser_proxy.html">
5 <link rel="import" href="channel_switcher_dialog.html"> 6 <link rel="import" href="channel_switcher_dialog.html">
6 <link rel="import" href="../i18n_setup.html"> 7 <link rel="import" href="../i18n_setup.html">
7 <link rel="import" href="../settings_shared_css.html"> 8 <link rel="import" href="../settings_shared_css.html">
8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat or.html"> 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat or.html">
9 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 10 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
11 12
12 <dom-module id="settings-detailed-build-info"> 13 <dom-module id="settings-detailed-build-info">
13 <template> 14 <template>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 <div>$i18n{aboutCommandLineLabel}</div> 82 <div>$i18n{aboutCommandLineLabel}</div>
82 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> 83 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div>
83 </div> 84 </div>
84 <div class="settings-box two-line single-column"> 85 <div class="settings-box two-line single-column">
85 <div>$i18n{aboutBuildDateLabel}</div> 86 <div>$i18n{aboutBuildDateLabel}</div>
86 <div class="secondary">$i18n{aboutBuildDate}</div> 87 <div class="secondary">$i18n{aboutBuildDate}</div>
87 </div> 88 </div>
88 </template> 89 </template>
89 <script src="detailed_build_info.js"></script> 90 <script src="detailed_build_info.js"></script>
90 </dom-module> 91 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698