OLD | NEW |
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="/about_page/about_page_browser_proxy.html"> | 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> |
3 <link rel="import" href="/about_page/channel_switcher_dialog.html"> | 3 <link rel="import" href="/about_page/channel_switcher_dialog.html"> |
4 <link rel="import" href="/i18n_setup.html" | 4 <link rel="import" href="/i18n_setup.html"> |
5 <link rel="import" href="/settings_shared_css.html"> | 5 <link rel="import" href="/settings_shared_css.html"> |
6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
10 | 10 |
11 <dom-module id="settings-detailed-build-info"> | 11 <dom-module id="settings-detailed-build-info"> |
12 <template> | 12 <template> |
13 <style include="settings-shared"> | 13 <style include="settings-shared"> |
14 .secondary { | 14 .secondary { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 <div>$i18n{aboutCommandLineLabel}</div> | 68 <div>$i18n{aboutCommandLineLabel}</div> |
69 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> | 69 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> |
70 </div> | 70 </div> |
71 <div class="settings-box two-line single-column"> | 71 <div class="settings-box two-line single-column"> |
72 <div>$i18n{aboutBuildDateLabel}</div> | 72 <div>$i18n{aboutBuildDateLabel}</div> |
73 <div class="secondary">$i18n{aboutBuildDate}</div> | 73 <div class="secondary">$i18n{aboutBuildDate}</div> |
74 </div> | 74 </div> |
75 </template> | 75 </template> |
76 <script src="detailed_build_info.js"></script> | 76 <script src="detailed_build_info.js"></script> |
77 </dom-module> | 77 </dom-module> |
OLD | NEW |