| 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 <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 68 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
| 69 | 69 |
| 70 // Overridden from RenderWidgetHostViewPort: | 70 // Overridden from RenderWidgetHostViewPort: |
| 71 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 71 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
| 72 const gfx::Rect& pos) OVERRIDE; | 72 const gfx::Rect& pos) OVERRIDE; |
| 73 virtual void InitAsFullscreen( | 73 virtual void InitAsFullscreen( |
| 74 RenderWidgetHostView* reference_host_view) OVERRIDE; | 74 RenderWidgetHostView* reference_host_view) OVERRIDE; |
| 75 virtual void WasShown() OVERRIDE; | 75 virtual void WasShown() OVERRIDE; |
| 76 virtual void WasHidden() OVERRIDE; | 76 virtual void WasHidden() OVERRIDE; |
| 77 virtual void MovePluginWindows( | 77 virtual void MovePluginWindows( |
| 78 const gfx::Point& scroll_offset, | 78 const gfx::Vector2d& scroll_offset, |
| 79 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; | 79 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; |
| 80 virtual void Focus() OVERRIDE; | 80 virtual void Focus() OVERRIDE; |
| 81 virtual void Blur() OVERRIDE; | 81 virtual void Blur() OVERRIDE; |
| 82 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 82 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
| 83 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 83 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
| 84 virtual void TextInputStateChanged( | 84 virtual void TextInputStateChanged( |
| 85 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; | 85 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; |
| 86 virtual void ImeCancelComposition() OVERRIDE; | 86 virtual void ImeCancelComposition() OVERRIDE; |
| 87 virtual void ImeCompositionRangeChanged( | 87 virtual void ImeCompositionRangeChanged( |
| 88 const ui::Range& range, | 88 const ui::Range& range, |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 // Used to track the state of the window we're created from. Only used when | 391 // Used to track the state of the window we're created from. Only used when |
| 392 // created fullscreen. | 392 // created fullscreen. |
| 393 scoped_ptr<aura::WindowTracker> host_tracker_; | 393 scoped_ptr<aura::WindowTracker> host_tracker_; |
| 394 | 394 |
| 395 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 395 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 396 }; | 396 }; |
| 397 | 397 |
| 398 } // namespace content | 398 } // namespace content |
| 399 | 399 |
| 400 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 400 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |