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

Unified Diff: ui/views/animation/ink_drop_impl_unittest.cc

Issue 2499523003: Add ink drop masking to TrayBackgroundView (Closed)
Patch Set: Addressed review comments Created 4 years, 1 month 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/ink_drop_impl_unittest.cc
diff --git a/ui/views/animation/ink_drop_impl_unittest.cc b/ui/views/animation/ink_drop_impl_unittest.cc
index cf5801af3a2e7eba9a4d9625d1dcbfc9a71b0e4c..c0725ff9e2b02bdfe75b128d3f49eb0e84adfba4 100644
--- a/ui/views/animation/ink_drop_impl_unittest.cc
+++ b/ui/views/animation/ink_drop_impl_unittest.cc
@@ -64,7 +64,8 @@ InkDropImplTest::InkDropImplTest()
thread_task_runner_handle_(
new base::ThreadTaskRunnerHandle(task_runner_)),
ink_drop_host_(base::MakeUnique<TestInkDropHost>()),
- ink_drop_(base::MakeUnique<InkDropImpl>(ink_drop_host_.get())),
+ ink_drop_(
+ base::MakeUnique<InkDropImpl>(ink_drop_host_.get(), gfx::Size())),
test_api_(base::MakeUnique<test::InkDropImplTestApi>(ink_drop_.get())) {
ink_drop_host_->set_disable_timers_for_test(true);
}

Powered by Google App Engine
This is Rietveld 408576698