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

Unified Diff: chrome/browser/resources/settings/internet_page/network_config_input.js

Issue 2848683003: MD Settings: Add settings-internet-config (WiFi only, no certs) (Closed)
Patch Set: Feedback, add network-confg-input + select Created 3 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
Index: chrome/browser/resources/settings/internet_page/network_config_input.js
diff --git a/chrome/browser/resources/settings/internet_page/network_config_input.js b/chrome/browser/resources/settings/internet_page/network_config_input.js
new file mode 100644
index 0000000000000000000000000000000000000000..0d9aa62a1ff887dc69a6beea234909a635143bd5
--- /dev/null
+++ b/chrome/browser/resources/settings/internet_page/network_config_input.js
@@ -0,0 +1,21 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @fileoverview Polymer element for network configuration input fields.
+ */
+Polymer({
+ is: 'network-config-input',
+
+ properties: {
+ label: String,
+
+ disabled: Boolean,
+
+ value: {
+ type: String,
+ notify: true,
+ }
+ },
+});

Powered by Google App Engine
This is Rietveld 408576698