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

Unified Diff: chrome/browser/resources/settings/settings_main/settings_main.html

Issue 1953093002: MD Settings: Hooking up router to navigate to dummy About page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_main/settings_main.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/settings_main/settings_main.html
diff --git a/chrome/browser/resources/settings/settings_main/settings_main.html b/chrome/browser/resources/settings/settings_main/settings_main.html
index 1a1cabc869caeb8b9fca43cbaea5cccd7b0be3cd..9a5e61204feda1d760317df7db89a336bd0358d2 100644
--- a/chrome/browser/resources/settings/settings_main/settings_main.html
+++ b/chrome/browser/resources/settings/settings_main/settings_main.html
@@ -7,7 +7,7 @@
<template>
<content select="paper-icon-button"></content>
<div id="pageContainer">
- <template is="dom-if" if="[[!showAdvancedPage_]]">
+ <template is="dom-if" if="[[showBasicPage_]]">
<settings-basic-page prefs="{{prefs}}" current-route="{{currentRoute}}">
</settings-basic-page>
</template>
@@ -16,6 +16,11 @@
current-route="{{currentRoute}}">
</settings-advanced-page>
</template>
+ <template is="dom-if" if="[[showAboutPage_]]">
+ <!-- TODO(dpapad): Replace this with <settings-about-page>
+ implementation -->
+ <div>$i18n{aboutPageTitle}</div>
+ </template>
</div>
</template>
<script src="settings_main.js"></script>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_main/settings_main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698