| 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 "cc/resources/returned_resource.h" | 9 #include "cc/resources/returned_resource.h" |
| 10 #include "cc/surfaces/surface_factory_client.h" | 10 #include "cc/surfaces/surface_factory_client.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 void SpeakSelection() override; | 126 void SpeakSelection() override; |
| 127 bool IsSpeaking() const override; | 127 bool IsSpeaking() const override; |
| 128 void StopSpeaking() override; | 128 void StopSpeaking() override; |
| 129 | 129 |
| 130 // RenderWidgetHostViewBase implementation. | 130 // RenderWidgetHostViewBase implementation. |
| 131 bool PostProcessEventForPluginIme( | 131 bool PostProcessEventForPluginIme( |
| 132 const NativeWebKeyboardEvent& event) override; | 132 const NativeWebKeyboardEvent& event) override; |
| 133 #endif // defined(OS_MACOSX) | 133 #endif // defined(OS_MACOSX) |
| 134 | 134 |
| 135 // RenderWidgetHostViewBase implementation. | 135 // RenderWidgetHostViewBase implementation. |
| 136 #if defined(OS_ANDROID) | 136 #if defined(OS_ANDROID) && !defined(USE_AURA) |
| 137 void LockCompositingSurface() override; | 137 void LockCompositingSurface() override; |
| 138 void UnlockCompositingSurface() override; | 138 void UnlockCompositingSurface() override; |
| 139 #endif // defined(OS_ANDROID) | 139 #endif // defined(OS_ANDROID) |
| 140 | 140 |
| 141 #if defined(OS_WIN) | 141 #if defined(OS_WIN) |
| 142 void SetParentNativeViewAccessible( | 142 void SetParentNativeViewAccessible( |
| 143 gfx::NativeViewAccessible accessible_parent) override; | 143 gfx::NativeViewAccessible accessible_parent) override; |
| 144 gfx::NativeViewId GetParentForWindowlessPlugin() const override; | 144 gfx::NativeViewId GetParentForWindowlessPlugin() const override; |
| 145 #endif | 145 #endif |
| 146 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 146 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 } | 191 } |
| 192 | 192 |
| 193 private: | 193 private: |
| 194 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; | 194 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; |
| 195 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 195 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 } // namespace content | 198 } // namespace content |
| 199 | 199 |
| 200 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 200 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |