| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/wm/overlay_event_filter.h" | 5 #include "ash/wm/overlay_event_filter.h" |
| 6 | 6 |
| 7 #include "ash/wm/partial_screenshot_view.h" | 7 #include "ash/wm/partial_screenshot_view.h" |
| 8 #include "ui/aura/window.h" | 8 #include "ui/aura/window.h" |
| 9 #include "ui/aura/window_delegate.h" | 9 #include "ui/aura/window_delegate.h" |
| 10 #include "ui/base/event.h" | 10 #include "ui/base/event.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 57 } |
| 58 return false; // Not handled. | 58 return false; // Not handled. |
| 59 } | 59 } |
| 60 | 60 |
| 61 ui::TouchStatus OverlayEventFilter::PreHandleTouchEvent( | 61 ui::TouchStatus OverlayEventFilter::PreHandleTouchEvent( |
| 62 aura::Window* target, ui::TouchEvent* event) { | 62 aura::Window* target, ui::TouchEvent* event) { |
| 63 return ui::TOUCH_STATUS_UNKNOWN; // Not handled. | 63 return ui::TOUCH_STATUS_UNKNOWN; // Not handled. |
| 64 } | 64 } |
| 65 | 65 |
| 66 ui::GestureStatus OverlayEventFilter::PreHandleGestureEvent( | 66 ui::GestureStatus OverlayEventFilter::PreHandleGestureEvent( |
| 67 aura::Window* target, ui::GestureEventImpl* event) { | 67 aura::Window* target, ui::GestureEvent* event) { |
| 68 return ui::GESTURE_STATUS_UNKNOWN; // Not handled. | 68 return ui::GESTURE_STATUS_UNKNOWN; // Not handled. |
| 69 } | 69 } |
| 70 | 70 |
| 71 void OverlayEventFilter::OnLoginStateChanged( | 71 void OverlayEventFilter::OnLoginStateChanged( |
| 72 user::LoginStatus status) { | 72 user::LoginStatus status) { |
| 73 Cancel(); | 73 Cancel(); |
| 74 } | 74 } |
| 75 | 75 |
| 76 void OverlayEventFilter::OnAppTerminating() { | 76 void OverlayEventFilter::OnAppTerminating() { |
| 77 Cancel(); | 77 Cancel(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 88 void OverlayEventFilter::Deactivate() { | 88 void OverlayEventFilter::Deactivate() { |
| 89 delegate_ = NULL; | 89 delegate_ = NULL; |
| 90 } | 90 } |
| 91 | 91 |
| 92 void OverlayEventFilter::Cancel() { | 92 void OverlayEventFilter::Cancel() { |
| 93 if (delegate_) | 93 if (delegate_) |
| 94 delegate_->Cancel(); | 94 delegate_->Cancel(); |
| 95 } | 95 } |
| 96 } // namespace internal | 96 } // namespace internal |
| 97 } // namespace ash | 97 } // namespace ash |
| OLD | NEW |