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

Unified Diff: chrome/browser/resources/settings/system_page/system_page.js

Issue 1775803002: MD Settings: add a semi-functional System page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v2-md_history
Patch Set: fixes Created 4 years, 9 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/system_page/system_page.js
diff --git a/chrome/browser/resources/settings/device_page/touchpad.js b/chrome/browser/resources/settings/system_page/system_page.js
similarity index 53%
copy from chrome/browser/resources/settings/device_page/touchpad.js
copy to chrome/browser/resources/settings/system_page/system_page.js
index e7c74de6ae877ac57e9807b085ee04a920d1163f..226973e83ac4e6d34ef014be635b8650a9551431 100644
--- a/chrome/browser/resources/settings/device_page/touchpad.js
+++ b/chrome/browser/resources/settings/system_page/system_page.js
@@ -2,21 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
stevenjb 2016/03/08 23:13:31 While the @fileoverview comments are mostly rote,
Dan Beam 2016/03/09 02:31:31 Done.
-/**
- * @fileoverview
- * 'settings-touchpad' is the settings subpage with touchpad settings.
- *
- * @group Chrome Settings Elements
- * @element settings-touchpad
- */
Polymer({
- is: 'settings-touchpad',
+ is: 'settings-system-page',
properties: {
- /** Preferences state. */
+ /** @type {settings.SystemPageDelegate} */
+ delegate: {
+ type: Object,
+ },
+
prefs: {
type: Object,
notify: true,
},
},
+
+ /** @private */
+ onChangeProxySettingsTap_: function() {
+ this.delegate.changeProxySettings();
+ },
});

Powered by Google App Engine
This is Rietveld 408576698