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

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

Issue 9320056: Help: Implement the initial version of the cross-platform help/about page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: String fix. Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="helpTitle"></title>
6 <link rel="stylesheet" href="../shared/css/button.css">
7 <link rel="stylesheet" href="../shared/css/chrome_shared2.css">
8 <link rel="stylesheet" href="../uber/uber_shared.css">
9 <link rel="stylesheet" href="help.css">
10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/local_strings.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://help-frame/help.js"></script>
14 </head>
15 <body class="uber-frame">
16 <div class="page">
17 <header>
18 <h1 i18n-content="helpTitle"></h1>
19 </header>
20 <div id="about-container">
21 <img src="chrome://theme/IDR_PRODUCT_LOGO_32">
22 <div id="product-description">
23 <h2 i18n-content="aboutProductTitle"></h2>
24 <span i18n-content="aboutProductDescription"></span>
25 </div>
26 </div>
27 <div id="version-container">
28 <div id="browser-version" i18n-content="browserVersion"></div>
29 <if expr="pp_ifdef(is_posix and not is_macosx)">
30 <div id="update-status-container">
31 <img id="update-status-icon" class="up-to-date"></img>
32 <span id="update-status" i18n-content="updateCheckStarted"></span>
33 </div>
34 <div id="update-percentage" hidden></div>
35 <button id="relaunch" i18n-content="relaunch" hidden></button>
36 </if>
37 </div>
38 <if expr="pp_ifdef('_google_chrome')">
39 <div id="help-container">
40 <button id="get-help" i18n-content="getHelpWithChrome"></button>
41 <button i18n-content="reportAProblem"></button>
42 </div>
43 </if>
44 <div id="product-container">
45 <div i18n-content="productName"></div>
46 <div i18n-content="productCopyright"></div>
47 <div id="product-license"></div>
48 <if expr="pp_ifdef('_google_chrome')">
49 <div id="product-tos"></div>
50 </if>
51 </div>
52 </div>
53 </body>
54 <script src="chrome://help-frame/strings.js"></script>
55 <script src="chrome://resources/js/i18n_template.js"></script>
56 <script src="chrome://resources/js/i18n_process.js"></script>
57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698