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

Unified Diff: chrome/browser/resources/settings/controls/settings_input.html

Issue 2773233002: MD Settings: change settings-input to home-url-input due to reduced usage. (Closed)
Patch Set: updates based on comments Created 3 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/controls/settings_input.html
diff --git a/chrome/browser/resources/settings/controls/settings_input.html b/chrome/browser/resources/settings/controls/settings_input.html
deleted file mode 100644
index de07745c4b804faa9e813714603eff42896b704c..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/settings/controls/settings_input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<link rel="import" href="chrome://resources/html/assert.html">
-<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
-<link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_behavior.html">
-<link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_indicator.html">
-<link rel="import" href="pref_control_behavior.html">
-
-<dom-module id="settings-input">
- <template>
- <style>
- :host {
- -webkit-margin-start: 4px;
- cursor: auto;
- display: inline-block;
- }
- </style>
- <div id="outerDiv" class="layout horizontal center">
- <paper-input id="input" value="{{value}}" no-label-float label="[[label]]"
- error-message="[[errorMessage]]" on-change="onChange_"
- on-keydown="onKeydown_" disabled="[[isDisabled_(disabled, pref.*)]]"
- stop-keyboard-event-propagation invalid="{{invalid}}"
- tabindex$="[[getTabindex_(canTab)]]">
- </paper-input>
- <template is="dom-if" if="[[hasPrefPolicyIndicator(pref.*)]]">
- <cr-policy-pref-indicator pref="[[pref]]" icon-aria-label="[[label]]">
- </cr-policy-pref-indicator>
- </template>
- </div>
- </template>
- <script src="settings_input.js"></script>
-</dom-module>

Powered by Google App Engine
This is Rietveld 408576698