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

Side by Side Diff: ui/views/animation/test/test_ink_drop_delegate.cc

Issue 2001843002: Use ink drop hover for focus states on toolbar buttons and location (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: layout 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/animation/test/test_ink_drop_delegate.h" 5 #include "ui/views/animation/test/test_ink_drop_delegate.h"
6 6
7 namespace views { 7 namespace views {
8 namespace test { 8 namespace test {
9 9
10 TestInkDropDelegate::TestInkDropDelegate() 10 TestInkDropDelegate::TestInkDropDelegate()
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 22
23 void TestInkDropDelegate::SetHovered(bool is_hovered) { 23 void TestInkDropDelegate::SetHovered(bool is_hovered) {
24 is_hovered_ = is_hovered; 24 is_hovered_ = is_hovered;
25 } 25 }
26 26
27 InkDropState TestInkDropDelegate::GetTargetInkDropState() const { 27 InkDropState TestInkDropDelegate::GetTargetInkDropState() const {
28 return state_; 28 return state_;
29 } 29 }
30 30
31 InkDrop* TestInkDropDelegate::GetInkDrop() {
32 return nullptr;
33 }
34
31 } // namespace test 35 } // namespace test
32 } // namespace views 36 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/animation/test/test_ink_drop_delegate.h ('k') | ui/views/controls/button/blue_button_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698