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/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: indentation 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <td class="version" id="webkit_version" i18n-content="webkit_version"> </td> 67 <td class="version" id="webkit_version" i18n-content="webkit_version"> </td>
68 </tr> 68 </tr>
69 <tr><td class="label">JavaScript</td> 69 <tr><td class="label">JavaScript</td>
70 <td class="version" id="js_engine"> 70 <td class="version" id="js_engine">
71 <span i18n-content="js_engine"></span> 71 <span i18n-content="js_engine"></span>
72 <span i18n-content="js_version"></span> 72 <span i18n-content="js_version"></span>
73 </td> 73 </td>
74 </tr> 74 </tr>
75 <if expr="not pp_ifdef('android')"> 75 <if expr="not pp_ifdef('android')">
76 <tr><td class="label" i18n-content="flash_plugin"></td> 76 <tr><td class="label" i18n-content="flash_plugin"></td>
77 <td class="version" id="flash_version" i18n-content="flash_version"> </td> 77 <td class="version" id="flash_version" i18n-content="flash_version"></ td>
78 </tr> 78 </tr>
79 </if> 79 </if>
80 <tr><td class="label" i18n-content="user_agent_name"></td> 80 <tr><td class="label" i18n-content="user_agent_name"></td>
81 <td class="version" id="useragent" i18n-content="useragent"></td> 81 <td class="version" id="useragent" i18n-content="useragent"></td>
82 </tr> 82 </tr>
83 <tr><td class="label" i18n-content="command_line_name"></td> 83 <tr><td class="label" i18n-content="command_line_name"></td>
84 <td class="version" id="command_line" i18n-content="command_line"></ td> 84 <td class="version" id="command_line" i18n-content="command_line"></td >
85 </tr> 85 </tr>
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_path "></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>
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 </html>
101 </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