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

Side by Side Diff: ui/views/animation/test/ink_drop_host_view_test_api.h

Issue 2042073002: Centered flood fill style ink drop ripples on mouse/touch points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Polished for review. 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 #ifndef UI_VIEWS_ANIMATION_TEST_INK_DROP_HOST_VIEW_TEST_API_H_ 5 #ifndef UI_VIEWS_ANIMATION_TEST_INK_DROP_HOST_VIEW_TEST_API_H_
6 #define UI_VIEWS_ANIMATION_TEST_INK_DROP_HOST_VIEW_TEST_API_H_ 6 #define UI_VIEWS_ANIMATION_TEST_INK_DROP_HOST_VIEW_TEST_API_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "ui/views/animation/ink_drop.h" 12 #include "ui/views/animation/ink_drop.h"
13 #include "ui/views/animation/ink_drop_host_view.h" 13 #include "ui/views/animation/ink_drop_host_view.h"
14 14
15 namespace views { 15 namespace views {
16 namespace test { 16 namespace test {
17 17
18 // Test API to provide internal access to an InkDropHostView instance. 18 // Test API to provide internal access to an InkDropHostView instance.
19 class InkDropHostViewTestApi { 19 class InkDropHostViewTestApi {
20 public: 20 public:
21 explicit InkDropHostViewTestApi(InkDropHostView* host_view); 21 explicit InkDropHostViewTestApi(InkDropHostView* host_view);
22 ~InkDropHostViewTestApi(); 22 ~InkDropHostViewTestApi();
23 23
24 void SetInkDrop(std::unique_ptr<InkDrop> ink_drop); 24 void SetInkDrop(std::unique_ptr<InkDrop> ink_drop);
25 25
26 // Wrapper for InkDropHostView::GetInkDropCenterBasedOnLastEvent().
27 gfx::Point GetInkDropCenterBasedOnLastEvent() const;
28
29 // Wrapper for InkDropHostView::AnimateInkDrop().
30 void AnimateInkDrop(InkDropState state, const ui::Event* event);
31
26 private: 32 private:
27 // The InkDropHostView to provide internal access to. 33 // The InkDropHostView to provide internal access to.
28 InkDropHostView* host_view_; 34 InkDropHostView* host_view_;
29 35
30 DISALLOW_COPY_AND_ASSIGN(InkDropHostViewTestApi); 36 DISALLOW_COPY_AND_ASSIGN(InkDropHostViewTestApi);
31 }; 37 };
32 38
33 } // namespace test 39 } // namespace test
34 } // namespace views 40 } // namespace views
35 41
36 #endif // UI_VIEWS_ANIMATION_TEST_INK_DROP_HOST_VIEW_TEST_API_H_ 42 #endif // UI_VIEWS_ANIMATION_TEST_INK_DROP_HOST_VIEW_TEST_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698