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

Side by Side Diff: chrome/browser/resources/about_version.html

Issue 11464012: [Android] Add support for labeling a build with a particular build id. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/version_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 2
3 <!-- 3 <!--
4 about:version template page 4 about:version template page
5 --> 5 -->
6 6
7 <html id="t" i18n-values="dir:textdirection;"> 7 <html id="t" i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <if expr="pp_ifdef('android')"> 10 <if expr="pp_ifdef('android')">
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 <tr><td class="label" i18n-content="executable_path_name"></td> 86 <tr><td class="label" i18n-content="executable_path_name"></td>
87 <td class="version" id="executable_path" i18n-content="executable_pa th"></td> 87 <td class="version" id="executable_path" i18n-content="executable_pa th"></td>
88 </tr> 88 </tr>
89 <tr><td class="label" i18n-content="profile_path_name"></td> 89 <tr><td class="label" i18n-content="profile_path_name"></td>
90 <td class="version" id="profile_path" i18n-content="profile_path"></ td> 90 <td class="version" id="profile_path" i18n-content="profile_path"></ td>
91 </tr> 91 </tr>
92 <tr id="variations-section"> 92 <tr id="variations-section">
93 <td class="label" i18n-content="variations_name"></td> 93 <td class="label" i18n-content="variations_name"></td>
94 <td class="version" id="variations-list"></td> 94 <td class="version" id="variations-list"></td>
95 </tr> 95 </tr>
96 <if expr="pp_ifdef('android')">
97 <tr id="build-id-section">
98 <td class="label" i18n-content="build_id_name"></td>
Evan Stade 2012/12/10 20:41:14 2 fewer spaces of indent (you can also fix the ind
99 <td class="version" i18n-content="build_id"></td>
100 </tr>
101 </if>
96 </table> 102 </table>
97 </div> 103 </div>
98 <script src="chrome://resources/js/i18n_template2.js"></script> 104 <script src="chrome://resources/js/i18n_template2.js"></script>
99 </body> 105 </body>
100 106
101 </html> 107 </html>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/ui/webui/version_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698