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

Side by Side Diff: chrome/browser/resources/settings/about_page/about_page.html

Issue 2156883003: MD Settings: About page, remove unnecessary two-line CSS class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="/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
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_"
135 actionable> 135 actionable>
michaelpg 2016/07/18 18:32:18 nit: remove wrap?
dpapad 2016/07/18 18:48:44 Done.
136 $i18n{aboutGetHelpUsingChrome} 136 $i18n{aboutGetHelpUsingChrome}
137 </div> 137 </div>
138 <if expr="_google_chrome"> 138 <if expr="_google_chrome">
139 <div id="reportIssue" class="settings-box" actionable 139 <div id="reportIssue" class="settings-box" actionable
140 on-tap="onReportIssueTap_"> 140 on-tap="onReportIssueTap_">
141 $i18n{aboutReportAnIssue} 141 $i18n{aboutReportAnIssue}
142 </div> 142 </div>
143 </if> 143 </if>
144 <if expr="chromeos"> 144 <if expr="chromeos">
145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" 145 <div class="settings-box" on-tap="onDetailedBuildInfoTap_"
(...skipping 30 matching lines...) Expand all
176 <settings-detailed-build-info></settings-detailed-build-info> 176 <settings-detailed-build-info></settings-detailed-build-info>
177 </settings-subpage> 177 </settings-subpage>
178 </template> 178 </template>
179 </if> 179 </if>
180 </settings-animated-pages> 180 </settings-animated-pages>
181 </settings-section> 181 </settings-section>
182 </div> 182 </div>
183 </template> 183 </template>
184 <script src="about_page.js"></script> 184 <script src="about_page.js"></script>
185 </dom-module> 185 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698