| OLD | NEW |
| 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 "ash/ash_export.h" | 5 #include "ash/ash_export.h" |
| 6 #include "ash/pointer_watcher_delegate.h" | 6 #include "ash/common/pointer_watcher_delegate.h" |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
| 9 #include "ui/events/event_handler.h" | 9 #include "ui/events/event_handler.h" |
| 10 | 10 |
| 11 namespace gfx { | 11 namespace gfx { |
| 12 class Point; | 12 class Point; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace ui { | 15 namespace ui { |
| 16 class LocatedEvent; | 16 class LocatedEvent; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 42 gfx::Point GetLocationInScreen(const ui::LocatedEvent& event) const; | 42 gfx::Point GetLocationInScreen(const ui::LocatedEvent& event) const; |
| 43 views::Widget* GetTargetWidget(const ui::LocatedEvent& event) const; | 43 views::Widget* GetTargetWidget(const ui::LocatedEvent& event) const; |
| 44 | 44 |
| 45 // Must be empty on destruction. | 45 // Must be empty on destruction. |
| 46 base::ObserverList<views::PointerWatcher, true> pointer_watchers_; | 46 base::ObserverList<views::PointerWatcher, true> pointer_watchers_; |
| 47 | 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(PointerWatcherDelegateAura); | 48 DISALLOW_COPY_AND_ASSIGN(PointerWatcherDelegateAura); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace ash | 51 } // namespace ash |
| OLD | NEW |