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

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

Issue 1707613002: MD Settings: Start device page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments, rebase Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/basic_page/basic_page.html
diff --git a/chrome/browser/resources/settings/basic_page/basic_page.html b/chrome/browser/resources/settings/basic_page/basic_page.html
index 319532c4190fb1a8fa927c7c4cdeead1cedf23ff..54971faac601592ab5e164b59a193da9a7a8ad70 100644
--- a/chrome/browser/resources/settings/basic_page/basic_page.html
+++ b/chrome/browser/resources/settings/basic_page/basic_page.html
@@ -9,6 +9,7 @@
<link rel="import" href="chrome://md-settings/reset_page/reset_profile_banner.html">
<if expr="chromeos">
+<link rel="import" href="chrome://md-settings/device_page/device_page.html">
<link rel="import" href="chrome://md-settings/internet_page/internet_page.html">
</if>
@@ -47,6 +48,16 @@
</settings-appearance-page>
</settings-section>
</template>
+<if expr="chromeos">
+ <template is="dom-if" if="[[showPage(pageVisibility.device)]]" restamp>
+ <settings-section page-title="[[i18n('devicePageTitle')]]"
+ current-route="[[currentRoute]]" section="device">
+ <settings-device-page prefs="{{prefs}}"
+ current-route="{{currentRoute}}">
+ </settings-device-page>
+ </settings-section>
+ </template>
+</if>
<template is="dom-if" if="[[showPage(pageVisibility.onStartup)]]" restamp>
<settings-section page-title="[[i18n('onStartup')]]"
current-route="[[currentRoute]]" section="onStartup">

Powered by Google App Engine
This is Rietveld 408576698