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

Unified Diff: third_party/polymer/v1_0/components/paper-behaviors/paper-inky-focus-behavior.html

Issue 1187823002: Update Polymer components and re-run reproduce.sh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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: third_party/polymer/v1_0/components/paper-behaviors/paper-inky-focus-behavior.html
diff --git a/third_party/polymer/v1_0/components/paper-behaviors/paper-radio-button-behavior.html b/third_party/polymer/v1_0/components/paper-behaviors/paper-inky-focus-behavior.html
similarity index 74%
rename from third_party/polymer/v1_0/components/paper-behaviors/paper-radio-button-behavior.html
rename to third_party/polymer/v1_0/components/paper-behaviors/paper-inky-focus-behavior.html
index f79d65db4c8610fc24be3cdd490f4cb755db3518..4f6e9f8933c12202e94cc90e35660c01a7ba8505 100644
--- a/third_party/polymer/v1_0/components/paper-behaviors/paper-radio-button-behavior.html
+++ b/third_party/polymer/v1_0/components/paper-behaviors/paper-inky-focus-behavior.html
@@ -13,8 +13,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<script>
- /** @polymerBehavior */
- Polymer.PaperRadioButtonInk = {
+ /**
+ * `Polymer.PaperInkyFocusBehavior` implements a ripple when the element has keyboard focus.
+ *
+ * @polymerBehavior Polymer.PaperInkyFocusBehavior
+ */
+ Polymer.PaperInkyFocusBehaviorImpl = {
observers: [
'_focusedChanged(receivedFocusFromKeyboard)'
@@ -30,11 +34,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
};
- /** @polymerBehavior */
- Polymer.PaperRadioButtonBehavior = [
+ /** @polymerBehavior Polymer.PaperInkyFocusBehavior */
+ Polymer.PaperInkyFocusBehavior = [
Polymer.IronButtonState,
Polymer.IronControlState,
- Polymer.PaperRadioButtonInk
+ Polymer.PaperInkyFocusBehaviorImpl
];
</script>

Powered by Google App Engine
This is Rietveld 408576698