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

Unified Diff: ui/views/view_targeter.h

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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
« no previous file with comments | « ui/views/view_model_utils_unittest.cc ('k') | ui/views/view_targeter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/view_targeter.h
diff --git a/ui/views/view_targeter.h b/ui/views/view_targeter.h
deleted file mode 100644
index 572f106797b463356dd1b523d27d9bdbefb3e692..0000000000000000000000000000000000000000
--- a/ui/views/view_targeter.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_VIEWS_VIEW_TARGETER_H_
-#define UI_VIEWS_VIEW_TARGETER_H_
-
-#include "ui/events/event_targeter.h"
-#include "ui/views/views_export.h"
-
-namespace views {
-
-namespace internal {
-class RootView;
-} // namespace internal
-
-class View;
-class ViewTargeterDelegate;
-
-// A ViewTargeter is installed on a View that wishes to use the custom
-// hit-testing or event-targeting behaviour defined by |delegate|.
-class VIEWS_EXPORT ViewTargeter : public ui::EventTargeter {
- public:
- explicit ViewTargeter(ViewTargeterDelegate* delegate);
- ~ViewTargeter() override;
-
- // A call-through to DoesIntersectRect() on |delegate_|.
- bool DoesIntersectRect(const View* target, const gfx::Rect& rect) const;
-
- // A call-through to TargetForRect() on |delegate_|.
- View* TargetForRect(View* root, const gfx::Rect& rect) const;
-
- protected:
- // ui::EventTargeter:
- ui::EventTarget* FindTargetForEvent(ui::EventTarget* root,
- ui::Event* event) override;
- ui::EventTarget* FindNextBestTarget(ui::EventTarget* previous_target,
- ui::Event* event) override;
- bool SubtreeCanAcceptEvent(ui::EventTarget* target,
- const ui::LocatedEvent& event) const override;
- bool EventLocationInsideBounds(ui::EventTarget* target,
- const ui::LocatedEvent& event) const override;
-
- private:
- // TODO(tdanderson): Un-friend RootView once RootView::DispatchGestureEvent()
- // has been removed.
- friend class internal::RootView;
-
- View* FindTargetForKeyEvent(View* root, const ui::KeyEvent& key);
- View* FindTargetForScrollEvent(View* root, const ui::ScrollEvent& scroll);
-
- virtual View* FindTargetForGestureEvent(View* root,
- const ui::GestureEvent& gesture);
- virtual ui::EventTarget* FindNextBestTargetForGestureEvent(
- ui::EventTarget* previous_target,
- const ui::GestureEvent& gesture);
-
- // ViewTargeter does not own the |delegate_|, but |delegate_| must
- // outlive the targeter.
- ViewTargeterDelegate* delegate_;
-
- DISALLOW_COPY_AND_ASSIGN(ViewTargeter);
-};
-
-} // namespace views
-
-#endif // UI_VIEWS_VIEW_TARGETER_H_
« no previous file with comments | « ui/views/view_model_utils_unittest.cc ('k') | ui/views/view_targeter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698