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

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

Issue 1981033003: MD Settings: About page, implement help and feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak strings to match the mocks." Created 4 years, 7 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
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="chrome://md-settings/about_page/about_page_browser_prox y.html">
2 <link rel="import" href="chrome://md-settings/settings_page/main_page_behavior.h tml"> 3 <link rel="import" href="chrome://md-settings/settings_page/main_page_behavior.h tml">
3 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa ges.html"> 4 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa ges.html">
4 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm l"> 5 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm l">
5 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
8 9
9 <if expr="chromeos"> 10 <if expr="chromeos">
10 <link rel="import" href="chrome://md-settings/about_page/detailed_build_info.htm l"> 11 <link rel="import" href="chrome://md-settings/about_page/detailed_build_info.htm l">
11 <link rel="import" href="chrome://md-settings/settings_page/settings_subpage.htm l"> 12 <link rel="import" href="chrome://md-settings/settings_page/settings_subpage.htm l">
(...skipping 25 matching lines...) Expand all
37 <span>$i18n{aboutProductTitle}</span> 38 <span>$i18n{aboutProductTitle}</span>
38 </div> 39 </div>
39 <div class="settings-box two-line"> 40 <div class="settings-box two-line">
40 <!-- TODO(dpapad): Implement this. --> 41 <!-- TODO(dpapad): Implement this. -->
41 <div class="start"> 42 <div class="start">
42 <div>Your device is up to date</div> 43 <div>Your device is up to date</div>
43 <div class="secondary">Version Foo.bar.baz</div> 44 <div class="secondary">Version Foo.bar.baz</div>
44 </div> 45 </div>
45 <paper-button class="secondary-action">Check for update</paper-butto n> 46 <paper-button class="secondary-action">Check for update</paper-butto n>
46 </div> 47 </div>
47 <div class="settings-box two-line"> 48 <div id="help" class="settings-box two-line" on-tap="onHelpTap_">
48 <!-- TODO(dpapad): Implement this. --> 49 $i18n{aboutGetHelpUsingChrome}
49 <div class="start">
50 <div>Get help with Chrome</div>
51 <div class="secondary">Open the Help Center</div>
52 </div>
53 </div> 50 </div>
54 <div class="settings-box"> 51 <if expr="_google_chrome">
55 <!-- TODO(dpapad): Implement this. --> 52 <div id="reportIssue" class="settings-box" on-tap="onReportIssueTap_">
56 Report an issue 53 $i18n{aboutReportAnIssue}
57 </div> 54 </div>
55 </if>
58 <if expr="chromeos"> 56 <if expr="chromeos">
59 <div class="settings-box" on-tap="onDetailedBuildInfoTap_"> 57 <div class="settings-box" on-tap="onDetailedBuildInfoTap_">
60 <!-- TODO(dpapad): Localize string. --> 58 <!-- TODO(dpapad): Localize string. -->
61 Detailed build info 59 Detailed build info
62 </div> 60 </div>
63 </if> 61 </if>
64 </neon-animatable> 62 </neon-animatable>
65 <if expr="chromeos"> 63 <if expr="chromeos">
66 <template is="dom-if" name="detailed-build-info"> 64 <template is="dom-if" name="detailed-build-info">
67 <settings-subpage page-title="Detailed build information"> 65 <settings-subpage page-title="Detailed build information">
68 <settings-detailed-build-info></settings-detailed-build-info> 66 <settings-detailed-build-info></settings-detailed-build-info>
69 </settings-subpage> 67 </settings-subpage>
70 </template> 68 </template>
71 </if> 69 </if>
72 </settings-animated-pages> 70 </settings-animated-pages>
73 </settings-section> 71 </settings-section>
74 </template> 72 </template>
75 <script src="about_page.js"></script> 73 <script src="about_page.js"></script>
76 </dom-module> 74 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698