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

Unified Diff: ash/pointer_watcher_delegate_aura.cc

Issue 2158273003: mus: Rename .*PointerWatcher.* to .*PointerDownWatcher.*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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 | « ash/pointer_watcher_delegate_aura.h ('k') | ash/shelf/shelf_tooltip_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/pointer_watcher_delegate_aura.cc
diff --git a/ash/pointer_watcher_delegate_aura.cc b/ash/pointer_watcher_delegate_aura.cc
deleted file mode 100644
index d70720d5a1932395559a707fb2e3defc33ac896f..0000000000000000000000000000000000000000
--- a/ash/pointer_watcher_delegate_aura.cc
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2016 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.
-
-#include "ash/pointer_watcher_delegate_aura.h"
-
-#include "ash/shell.h"
-#include "ui/aura/client/screen_position_client.h"
-#include "ui/aura/window.h"
-#include "ui/events/event.h"
-#include "ui/events/event_constants.h"
-#include "ui/gfx/geometry/point.h"
-#include "ui/views/pointer_watcher.h"
-#include "ui/views/widget/widget.h"
-
-namespace ash {
-
-PointerWatcherDelegateAura::PointerWatcherDelegateAura() {
- Shell::GetInstance()->AddPreTargetHandler(this);
-}
-
-PointerWatcherDelegateAura::~PointerWatcherDelegateAura() {
- Shell::GetInstance()->RemovePreTargetHandler(this);
-}
-
-void PointerWatcherDelegateAura::AddPointerWatcher(
- views::PointerWatcher* watcher) {
- pointer_watchers_.AddObserver(watcher);
-}
-
-void PointerWatcherDelegateAura::RemovePointerWatcher(
- views::PointerWatcher* watcher) {
- pointer_watchers_.RemoveObserver(watcher);
-}
-
-void PointerWatcherDelegateAura::OnMouseEvent(ui::MouseEvent* event) {
- if (event->type() == ui::ET_MOUSE_PRESSED)
- FOR_EACH_OBSERVER(views::PointerWatcher, pointer_watchers_,
- OnMousePressed(*event, GetLocationInScreen(*event),
- GetTargetWidget(*event)));
-}
-
-void PointerWatcherDelegateAura::OnTouchEvent(ui::TouchEvent* event) {
- if (event->type() == ui::ET_TOUCH_PRESSED)
- FOR_EACH_OBSERVER(views::PointerWatcher, pointer_watchers_,
- OnTouchPressed(*event, GetLocationInScreen(*event),
- GetTargetWidget(*event)));
-}
-
-gfx::Point PointerWatcherDelegateAura::GetLocationInScreen(
- const ui::LocatedEvent& event) const {
- aura::Window* target = static_cast<aura::Window*>(event.target());
- gfx::Point location_in_screen = event.location();
- aura::client::GetScreenPositionClient(target->GetRootWindow())
- ->ConvertPointToScreen(target, &location_in_screen);
- return location_in_screen;
-}
-
-views::Widget* PointerWatcherDelegateAura::GetTargetWidget(
- const ui::LocatedEvent& event) const {
- aura::Window* window = static_cast<aura::Window*>(event.target());
- return views::Widget::GetTopLevelWidgetForNativeView(window);
-}
-
-} // namespace ash
« no previous file with comments | « ash/pointer_watcher_delegate_aura.h ('k') | ash/shelf/shelf_tooltip_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698