| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 RenderWidgetHostViewBase* target_view, | 143 RenderWidgetHostViewBase* target_view, |
| 144 gfx::Point* transformed_point) override; | 144 gfx::Point* transformed_point) override; |
| 145 | 145 |
| 146 bool IsRenderWidgetHostViewChildFrame() override; | 146 bool IsRenderWidgetHostViewChildFrame() override; |
| 147 | 147 |
| 148 #if defined(OS_MACOSX) | 148 #if defined(OS_MACOSX) |
| 149 // RenderWidgetHostView implementation. | 149 // RenderWidgetHostView implementation. |
| 150 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; | 150 ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; |
| 151 void SetActive(bool active) override; | 151 void SetActive(bool active) override; |
| 152 void ShowDefinitionForSelection() override; | 152 void ShowDefinitionForSelection() override; |
| 153 bool SupportsSpeech() const override; | |
| 154 void SpeakSelection() override; | 153 void SpeakSelection() override; |
| 155 bool IsSpeaking() const override; | |
| 156 void StopSpeaking() override; | |
| 157 #endif // defined(OS_MACOSX) | 154 #endif // defined(OS_MACOSX) |
| 158 | 155 |
| 159 // RenderWidgetHostViewBase implementation. | 156 // RenderWidgetHostViewBase implementation. |
| 160 void LockCompositingSurface() override; | 157 void LockCompositingSurface() override; |
| 161 void UnlockCompositingSurface() override; | 158 void UnlockCompositingSurface() override; |
| 162 | 159 |
| 163 InputEventAckState FilterInputEvent( | 160 InputEventAckState FilterInputEvent( |
| 164 const blink::WebInputEvent& input_event) override; | 161 const blink::WebInputEvent& input_event) override; |
| 165 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 162 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 166 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 163 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 // The surface client ID of the parent RenderWidgetHostView. 0 if none. | 267 // The surface client ID of the parent RenderWidgetHostView. 0 if none. |
| 271 cc::FrameSinkId parent_frame_sink_id_; | 268 cc::FrameSinkId parent_frame_sink_id_; |
| 272 | 269 |
| 273 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; | 270 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; |
| 274 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 271 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 275 }; | 272 }; |
| 276 | 273 |
| 277 } // namespace content | 274 } // namespace content |
| 278 | 275 |
| 279 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 276 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |