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="/i18n_setup.html"> | 3 <link rel="import" href="/i18n_setup.html"> |
4 <link rel="import" href="/icons.html"> | 4 <link rel="import" href="/icons.html"> |
5 <link rel="import" href="/lifetime_browser_proxy.html"> | 5 <link rel="import" href="/lifetime_browser_proxy.html"> |
6 <link rel="import" href="/settings_page/main_page_behavior.html"> | 6 <link rel="import" href="/settings_page/main_page_behavior.html"> |
7 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 7 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
8 <link rel="import" href="/settings_page/settings_section.html"> | 8 <link rel="import" href="/settings_page/settings_section.html"> |
9 <link rel="import" href="/settings_page_css.html"> | 9 <link rel="import" href="/settings_page_css.html"> |
10 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 $i18n{aboutRelaunchAndPowerwash} | 124 $i18n{aboutRelaunchAndPowerwash} |
125 </paper-button> | 125 </paper-button> |
126 <paper-button id="checkForUpdates" class="secondary-button" | 126 <paper-button id="checkForUpdates" class="secondary-button" |
127 hidden="[[!shouldShowCheckUpdates_(currentUpdateStatusEvent_
)]]" | 127 hidden="[[!shouldShowCheckUpdates_(currentUpdateStatusEvent_
)]]" |
128 on-tap="onCheckUpdatesTap_"> | 128 on-tap="onCheckUpdatesTap_"> |
129 $i18n{aboutCheckForUpdates} | 129 $i18n{aboutCheckForUpdates} |
130 </paper-button> | 130 </paper-button> |
131 </if> | 131 </if> |
132 </span> | 132 </span> |
133 </div> | 133 </div> |
134 <div id="help" class="settings-box two-line" on-tap="onHelpTap_" | 134 <div id="help" class="settings-box" on-tap="onHelpTap_" actionable> |
135 actionable> | |
136 $i18n{aboutGetHelpUsingChrome} | 135 $i18n{aboutGetHelpUsingChrome} |
137 </div> | 136 </div> |
138 <if expr="_google_chrome"> | 137 <if expr="_google_chrome"> |
139 <div id="reportIssue" class="settings-box" actionable | 138 <div id="reportIssue" class="settings-box" actionable |
140 on-tap="onReportIssueTap_"> | 139 on-tap="onReportIssueTap_"> |
141 $i18n{aboutReportAnIssue} | 140 $i18n{aboutReportAnIssue} |
142 </div> | 141 </div> |
143 </if> | 142 </if> |
144 <if expr="chromeos"> | 143 <if expr="chromeos"> |
145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" | 144 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" |
(...skipping 30 matching lines...) Expand all Loading... |
176 <settings-detailed-build-info></settings-detailed-build-info> | 175 <settings-detailed-build-info></settings-detailed-build-info> |
177 </settings-subpage> | 176 </settings-subpage> |
178 </template> | 177 </template> |
179 </if> | 178 </if> |
180 </settings-animated-pages> | 179 </settings-animated-pages> |
181 </settings-section> | 180 </settings-section> |
182 </div> | 181 </div> |
183 </template> | 182 </template> |
184 <script src="about_page.js"></script> | 183 <script src="about_page.js"></script> |
185 </dom-module> | 184 </dom-module> |
OLD | NEW |