OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 9 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; | 54 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; |
55 | 55 |
56 // RenderWidgetHostViewPort implementation. | 56 // RenderWidgetHostViewPort implementation. |
57 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 57 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
58 const gfx::Rect& pos) OVERRIDE; | 58 const gfx::Rect& pos) OVERRIDE; |
59 virtual void InitAsFullscreen( | 59 virtual void InitAsFullscreen( |
60 RenderWidgetHostView* reference_host_view) OVERRIDE; | 60 RenderWidgetHostView* reference_host_view) OVERRIDE; |
61 virtual void WasShown() OVERRIDE; | 61 virtual void WasShown() OVERRIDE; |
62 virtual void WasHidden() OVERRIDE; | 62 virtual void WasHidden() OVERRIDE; |
63 virtual void MovePluginWindows( | 63 virtual void MovePluginWindows( |
64 const gfx::Vector2d& scroll_offset, | |
65 const std::vector<WebPluginGeometry>& moves) OVERRIDE; | 64 const std::vector<WebPluginGeometry>& moves) OVERRIDE; |
66 virtual void Blur() OVERRIDE; | 65 virtual void Blur() OVERRIDE; |
67 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 66 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
68 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 67 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
69 virtual void TextInputTypeChanged(ui::TextInputType type, | 68 virtual void TextInputTypeChanged(ui::TextInputType type, |
70 ui::TextInputMode input_mode, | 69 ui::TextInputMode input_mode, |
71 bool can_compose_inline) OVERRIDE; | 70 bool can_compose_inline) OVERRIDE; |
72 virtual void ImeCancelComposition() OVERRIDE; | 71 virtual void ImeCancelComposition() OVERRIDE; |
73 #if defined(OS_MACOSX) || defined(USE_AURA) | 72 #if defined(OS_MACOSX) || defined(USE_AURA) |
74 virtual void ImeCompositionRangeChanged( | 73 virtual void ImeCompositionRangeChanged( |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 // sent through it are routed to the embedding renderer process. | 175 // sent through it are routed to the embedding renderer process. |
177 CrossProcessFrameConnector* frame_connector_; | 176 CrossProcessFrameConnector* frame_connector_; |
178 | 177 |
179 private: | 178 private: |
180 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 179 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
181 }; | 180 }; |
182 | 181 |
183 } // namespace content | 182 } // namespace content |
184 | 183 |
185 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 184 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
OLD | NEW |