| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 bool IsSpeaking() const override; | 113 bool IsSpeaking() const override; |
| 114 void StopSpeaking() override; | 114 void StopSpeaking() override; |
| 115 | 115 |
| 116 // RenderWidgetHostViewBase implementation. | 116 // RenderWidgetHostViewBase implementation. |
| 117 bool PostProcessEventForPluginIme( | 117 bool PostProcessEventForPluginIme( |
| 118 const NativeWebKeyboardEvent& event) override; | 118 const NativeWebKeyboardEvent& event) override; |
| 119 #endif // defined(OS_MACOSX) | 119 #endif // defined(OS_MACOSX) |
| 120 | 120 |
| 121 // RenderWidgetHostViewBase implementation. | 121 // RenderWidgetHostViewBase implementation. |
| 122 #if defined(OS_ANDROID) | 122 #if defined(OS_ANDROID) |
| 123 virtual void LockCompositingSurface() override; | 123 void LockCompositingSurface() override; |
| 124 virtual void UnlockCompositingSurface() override; | 124 void UnlockCompositingSurface() override; |
| 125 #endif // defined(OS_ANDROID) | 125 #endif // defined(OS_ANDROID) |
| 126 | 126 |
| 127 #if defined(OS_WIN) | 127 #if defined(OS_WIN) |
| 128 virtual void SetParentNativeViewAccessible( | 128 virtual void SetParentNativeViewAccessible( |
| 129 gfx::NativeViewAccessible accessible_parent) override; | 129 gfx::NativeViewAccessible accessible_parent) override; |
| 130 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const override; | 130 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const override; |
| 131 #endif | 131 #endif |
| 132 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 132 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 133 BrowserAccessibilityDelegate* delegate) override; | 133 BrowserAccessibilityDelegate* delegate) override; |
| 134 | 134 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 148 // sent through it are routed to the embedding renderer process. | 148 // sent through it are routed to the embedding renderer process. |
| 149 CrossProcessFrameConnector* frame_connector_; | 149 CrossProcessFrameConnector* frame_connector_; |
| 150 | 150 |
| 151 private: | 151 private: |
| 152 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 152 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 153 }; | 153 }; |
| 154 | 154 |
| 155 } // namespace content | 155 } // namespace content |
| 156 | 156 |
| 157 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 157 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |