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

Unified Diff: ui/views/animation/test/ink_drop_highlight_test_api.cc

Issue 2034963002: Rename InkDropHover to InkDropHighlight (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gyp file Created 4 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: ui/views/animation/test/ink_drop_highlight_test_api.cc
diff --git a/ui/views/animation/test/ink_drop_hover_test_api.cc b/ui/views/animation/test/ink_drop_highlight_test_api.cc
similarity index 54%
rename from ui/views/animation/test/ink_drop_hover_test_api.cc
rename to ui/views/animation/test/ink_drop_highlight_test_api.cc
index b7c1b455733e561a6874f1e58b0394f6559a5b20..77ba8fb2c83acd33ca1647df51f5b7afccd70ec7 100644
--- a/ui/views/animation/test/ink_drop_hover_test_api.cc
+++ b/ui/views/animation/test/ink_drop_highlight_test_api.cc
@@ -2,26 +2,27 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ui/views/animation/test/ink_drop_hover_test_api.h"
+#include "ui/views/animation/test/ink_drop_highlight_test_api.h"
#include "base/time/time.h"
#include "ui/compositor/layer.h"
#include "ui/compositor/layer_animator.h"
#include "ui/compositor/test/layer_animator_test_controller.h"
-#include "ui/views/animation/ink_drop_hover.h"
+#include "ui/views/animation/ink_drop_highlight.h"
namespace views {
namespace test {
-InkDropHoverTestApi::InkDropHoverTestApi(InkDropHover* ink_drop_hover)
+InkDropHighlightTestApi::InkDropHighlightTestApi(
+ InkDropHighlight* ink_drop_highlight)
: ui::test::MultiLayerAnimatorTestController(this),
- ink_drop_hover_(ink_drop_hover) {}
+ ink_drop_highlight_(ink_drop_highlight) {}
-InkDropHoverTestApi::~InkDropHoverTestApi() {}
+InkDropHighlightTestApi::~InkDropHighlightTestApi() {}
-std::vector<ui::LayerAnimator*> InkDropHoverTestApi::GetLayerAnimators() {
+std::vector<ui::LayerAnimator*> InkDropHighlightTestApi::GetLayerAnimators() {
std::vector<ui::LayerAnimator*> animators;
- animators.push_back(ink_drop_hover()->layer_->GetAnimator());
+ animators.push_back(ink_drop_highlight()->layer_->GetAnimator());
return animators;
}
« no previous file with comments | « ui/views/animation/test/ink_drop_highlight_test_api.h ('k') | ui/views/animation/test/ink_drop_hover_test_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698