Index: chrome/browser/resources/print_preview_animations.js |
diff --git a/chrome/browser/resources/print_preview_animations.js b/chrome/browser/resources/print_preview_animations.js |
index 800c83edf97d3054055ee1a9460e6665ec334a8b..015d935ce8ccaa9f0b642ef3a9946a482a8e68c9 100644 |
--- a/chrome/browser/resources/print_preview_animations.js |
+++ b/chrome/browser/resources/print_preview_animations.js |
@@ -18,7 +18,7 @@ function addAnimation(code) { |
return name; |
} |
-function showInvalidHint(el) { |
+function fadeInElement(el) { |
if (el.classList.contains('visible')) |
return; |
el.classList.remove('closing'); |
@@ -33,7 +33,7 @@ function showInvalidHint(el) { |
el.classList.add('visible'); |
} |
-function hideInvalidHint(el) { |
+function fadeOutElement(el) { |
if (!el.classList.contains('visible')) |
return; |
el.style.webkitAnimationName = ''; |