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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 void OnWindowTargetVisibilityChanged(bool visible) override; | 258 void OnWindowTargetVisibilityChanged(bool visible) override; |
259 bool HasHitTestMask() const override; | 259 bool HasHitTestMask() const override; |
260 void GetHitTestMask(gfx::Path* mask) const override; | 260 void GetHitTestMask(gfx::Path* mask) const override; |
261 | 261 |
262 // Overridden from ui::EventHandler: | 262 // Overridden from ui::EventHandler: |
263 void OnKeyEvent(ui::KeyEvent* event) override; | 263 void OnKeyEvent(ui::KeyEvent* event) override; |
264 void OnMouseEvent(ui::MouseEvent* event) override; | 264 void OnMouseEvent(ui::MouseEvent* event) override; |
265 void OnScrollEvent(ui::ScrollEvent* event) override; | 265 void OnScrollEvent(ui::ScrollEvent* event) override; |
266 void OnTouchEvent(ui::TouchEvent* event) override; | 266 void OnTouchEvent(ui::TouchEvent* event) override; |
267 void OnGestureEvent(ui::GestureEvent* event) override; | 267 void OnGestureEvent(ui::GestureEvent* event) override; |
| 268 void OnAccessibilityMouseEvent(ui::MouseEvent* event) override; |
268 | 269 |
269 // Overridden from aura::client::ActivationDelegate: | 270 // Overridden from aura::client::ActivationDelegate: |
270 bool ShouldActivate() const override; | 271 bool ShouldActivate() const override; |
271 | 272 |
272 // Overridden from aura::client::CursorClientObserver: | 273 // Overridden from aura::client::CursorClientObserver: |
273 void OnCursorVisibilityChanged(bool is_visible) override; | 274 void OnCursorVisibilityChanged(bool is_visible) override; |
274 | 275 |
275 // Overridden from aura::client::FocusChangeObserver: | 276 // Overridden from aura::client::FocusChangeObserver: |
276 void OnWindowFocused(aura::Window* gained_focus, | 277 void OnWindowFocused(aura::Window* gained_focus, |
277 aura::Window* lost_focus) override; | 278 aura::Window* lost_focus) override; |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 float device_scale_factor_; | 682 float device_scale_factor_; |
682 | 683 |
683 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 684 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
684 | 685 |
685 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 686 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
686 }; | 687 }; |
687 | 688 |
688 } // namespace content | 689 } // namespace content |
689 | 690 |
690 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 691 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |