| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 virtual void WasHidden() override; | 63 virtual void WasHidden() override; |
| 64 virtual void MovePluginWindows( | 64 virtual void MovePluginWindows( |
| 65 const std::vector<WebPluginGeometry>& moves) override; | 65 const std::vector<WebPluginGeometry>& moves) override; |
| 66 virtual void Blur() override; | 66 virtual void Blur() override; |
| 67 virtual void UpdateCursor(const WebCursor& cursor) override; | 67 virtual void UpdateCursor(const WebCursor& cursor) override; |
| 68 virtual void SetIsLoading(bool is_loading) override; | 68 virtual void SetIsLoading(bool is_loading) override; |
| 69 virtual void TextInputTypeChanged(ui::TextInputType type, | 69 virtual void TextInputTypeChanged(ui::TextInputType type, |
| 70 ui::TextInputMode input_mode, | 70 ui::TextInputMode input_mode, |
| 71 bool can_compose_inline) override; | 71 bool can_compose_inline) override; |
| 72 virtual void ImeCancelComposition() override; | 72 virtual void ImeCancelComposition() override; |
| 73 #if defined(OS_MACOSX) || defined(USE_AURA) | 73 #if defined(OS_MACOSX) || defined(USE_AURA) || defined(OS_ANDROID) |
| 74 virtual void ImeCompositionRangeChanged( | 74 virtual void ImeCompositionRangeChanged( |
| 75 const gfx::Range& range, | 75 const gfx::Range& range, |
| 76 const std::vector<gfx::Rect>& character_bounds) override; | 76 const std::vector<gfx::Rect>& character_bounds) override; |
| 77 #endif | 77 #endif |
| 78 virtual void RenderProcessGone(base::TerminationStatus status, | 78 virtual void RenderProcessGone(base::TerminationStatus status, |
| 79 int error_code) override; | 79 int error_code) override; |
| 80 virtual void Destroy() override; | 80 virtual void Destroy() override; |
| 81 virtual void SetTooltipText(const base::string16& tooltip_text) override; | 81 virtual void SetTooltipText(const base::string16& tooltip_text) override; |
| 82 virtual void SelectionChanged(const base::string16& text, | 82 virtual void SelectionChanged(const base::string16& text, |
| 83 size_t offset, | 83 size_t offset, |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 // sent through it are routed to the embedding renderer process. | 156 // sent through it are routed to the embedding renderer process. |
| 157 CrossProcessFrameConnector* frame_connector_; | 157 CrossProcessFrameConnector* frame_connector_; |
| 158 | 158 |
| 159 private: | 159 private: |
| 160 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 160 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 161 }; | 161 }; |
| 162 | 162 |
| 163 } // namespace content | 163 } // namespace content |
| 164 | 164 |
| 165 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 165 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |