| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 aura::Window* lost_activation) OVERRIDE; | 327 aura::Window* lost_activation) OVERRIDE; |
| 328 | 328 |
| 329 // Overridden from aura::client::CursorClientObserver: | 329 // Overridden from aura::client::CursorClientObserver: |
| 330 virtual void OnCursorVisibilityChanged(bool is_visible) OVERRIDE; | 330 virtual void OnCursorVisibilityChanged(bool is_visible) OVERRIDE; |
| 331 | 331 |
| 332 // Overridden from aura::client::FocusChangeObserver: | 332 // Overridden from aura::client::FocusChangeObserver: |
| 333 virtual void OnWindowFocused(aura::Window* gained_focus, | 333 virtual void OnWindowFocused(aura::Window* gained_focus, |
| 334 aura::Window* lost_focus) OVERRIDE; | 334 aura::Window* lost_focus) OVERRIDE; |
| 335 | 335 |
| 336 // Overridden from aura::RootWindowObserver: | 336 // Overridden from aura::RootWindowObserver: |
| 337 virtual void OnWindowTreeHostMoved(const aura::RootWindow* root, | 337 virtual void OnRootWindowHostMoved(const aura::RootWindow* root, |
| 338 const gfx::Point& new_origin) OVERRIDE; | 338 const gfx::Point& new_origin) OVERRIDE; |
| 339 | 339 |
| 340 // SoftwareFrameManagerClient implementation: | 340 // SoftwareFrameManagerClient implementation: |
| 341 virtual void SoftwareFrameWasFreed( | 341 virtual void SoftwareFrameWasFreed( |
| 342 uint32 output_surface_id, unsigned frame_id) OVERRIDE; | 342 uint32 output_surface_id, unsigned frame_id) OVERRIDE; |
| 343 virtual void ReleaseReferencesToSoftwareFrame() OVERRIDE; | 343 virtual void ReleaseReferencesToSoftwareFrame() OVERRIDE; |
| 344 | 344 |
| 345 bool CanCopyToBitmap() const; | 345 bool CanCopyToBitmap() const; |
| 346 | 346 |
| 347 #if defined(OS_WIN) | 347 #if defined(OS_WIN) |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 // passed to windowless plugins like Flash/Silverlight, etc as the | 775 // passed to windowless plugins like Flash/Silverlight, etc as the |
| 776 // container window. | 776 // container window. |
| 777 HWND plugin_parent_window_; | 777 HWND plugin_parent_window_; |
| 778 #endif | 778 #endif |
| 779 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 779 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 780 }; | 780 }; |
| 781 | 781 |
| 782 } // namespace content | 782 } // namespace content |
| 783 | 783 |
| 784 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 784 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |