| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 virtual void OnScrollEvent(ui::ScrollEvent* event) OVERRIDE; | 252 virtual void OnScrollEvent(ui::ScrollEvent* event) OVERRIDE; |
| 253 virtual void OnTouchEvent(ui::TouchEvent* event) OVERRIDE; | 253 virtual void OnTouchEvent(ui::TouchEvent* event) OVERRIDE; |
| 254 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; | 254 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
| 255 | 255 |
| 256 // Overridden from aura::client::ActivationDelegate: | 256 // Overridden from aura::client::ActivationDelegate: |
| 257 virtual bool ShouldActivate() const OVERRIDE; | 257 virtual bool ShouldActivate() const OVERRIDE; |
| 258 | 258 |
| 259 // Overridden from aura::client::ActivationChangeObserver: | 259 // Overridden from aura::client::ActivationChangeObserver: |
| 260 virtual void OnWindowActivated(aura::Window* gained_activation, | 260 virtual void OnWindowActivated(aura::Window* gained_activation, |
| 261 aura::Window* lost_activation) OVERRIDE; | 261 aura::Window* lost_activation) OVERRIDE; |
| 262 virtual void OnWindowActivationRequestCompleted( |
| 263 aura::Window* request_active, aura::Window* actual_active) OVERRIDE; |
| 262 | 264 |
| 263 // Overridden from aura::client::FocusChangeObserver: | 265 // Overridden from aura::client::FocusChangeObserver: |
| 264 virtual void OnWindowFocused(aura::Window* gained_focus, | 266 virtual void OnWindowFocused(aura::Window* gained_focus, |
| 265 aura::Window* lost_focus) OVERRIDE; | 267 aura::Window* lost_focus) OVERRIDE; |
| 266 | 268 |
| 267 // Overridden from aura::RootWindowObserver: | 269 // Overridden from aura::RootWindowObserver: |
| 268 virtual void OnRootWindowMoved(const aura::RootWindow* root, | 270 virtual void OnRootWindowMoved(const aura::RootWindow* root, |
| 269 const gfx::Point& new_origin) OVERRIDE; | 271 const gfx::Point& new_origin) OVERRIDE; |
| 270 | 272 |
| 271 #if defined(OS_WIN) | 273 #if defined(OS_WIN) |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 | 591 |
| 590 // Subscriber that listens to frame presentation events. | 592 // Subscriber that listens to frame presentation events. |
| 591 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; | 593 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; |
| 592 | 594 |
| 593 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 595 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 594 }; | 596 }; |
| 595 | 597 |
| 596 } // namespace content | 598 } // namespace content |
| 597 | 599 |
| 598 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 600 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |