| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 bool SupportsSpeech() const override; | 146 bool SupportsSpeech() const override; |
| 147 void SpeakSelection() override; | 147 void SpeakSelection() override; |
| 148 bool IsSpeaking() const override; | 148 bool IsSpeaking() const override; |
| 149 void StopSpeaking() override; | 149 void StopSpeaking() override; |
| 150 #endif // defined(OS_MACOSX) | 150 #endif // defined(OS_MACOSX) |
| 151 | 151 |
| 152 // RenderWidgetHostViewBase implementation. | 152 // RenderWidgetHostViewBase implementation. |
| 153 void LockCompositingSurface() override; | 153 void LockCompositingSurface() override; |
| 154 void UnlockCompositingSurface() override; | 154 void UnlockCompositingSurface() override; |
| 155 | 155 |
| 156 InputEventAckState FilterInputEvent( |
| 157 const blink::WebInputEvent& input_event) override; |
| 156 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 158 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 157 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 159 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
| 158 | 160 |
| 159 // cc::SurfaceFactoryClient implementation. | 161 // cc::SurfaceFactoryClient implementation. |
| 160 void ReturnResources(const cc::ReturnedResourceArray& resources) override; | 162 void ReturnResources(const cc::ReturnedResourceArray& resources) override; |
| 161 void SetBeginFrameSource(cc::BeginFrameSource* source) override; | 163 void SetBeginFrameSource(cc::BeginFrameSource* source) override; |
| 162 | 164 |
| 163 // cc::BeginFrameObserver implementation. | 165 // cc::BeginFrameObserver implementation. |
| 164 void OnBeginFrame(const cc::BeginFrameArgs& args) override; | 166 void OnBeginFrame(const cc::BeginFrameArgs& args) override; |
| 165 const cc::BeginFrameArgs& LastUsedBeginFrameArgs() const override; | 167 const cc::BeginFrameArgs& LastUsedBeginFrameArgs() const override; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 // The surface client ID of the parent RenderWidgetHostView. 0 if none. | 238 // The surface client ID of the parent RenderWidgetHostView. 0 if none. |
| 237 uint32_t parent_surface_client_id_; | 239 uint32_t parent_surface_client_id_; |
| 238 | 240 |
| 239 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; | 241 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; |
| 240 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 242 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 241 }; | 243 }; |
| 242 | 244 |
| 243 } // namespace content | 245 } // namespace content |
| 244 | 246 |
| 245 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 247 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |