| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 bool SupportsSpeech() const override; | 154 bool SupportsSpeech() const override; |
| 155 void SpeakSelection() override; | 155 void SpeakSelection() override; |
| 156 bool IsSpeaking() const override; | 156 bool IsSpeaking() const override; |
| 157 void StopSpeaking() override; | 157 void StopSpeaking() override; |
| 158 #endif // defined(OS_MACOSX) | 158 #endif // defined(OS_MACOSX) |
| 159 | 159 |
| 160 // RenderWidgetHostViewBase implementation. | 160 // RenderWidgetHostViewBase implementation. |
| 161 void LockCompositingSurface() override; | 161 void LockCompositingSurface() override; |
| 162 void UnlockCompositingSurface() override; | 162 void UnlockCompositingSurface() override; |
| 163 | 163 |
| 164 InputEventAckState FilterInputEvent( |
| 165 const blink::WebInputEvent& input_event) override; |
| 164 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 166 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 165 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 167 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
| 166 | 168 |
| 167 // cc::SurfaceFactoryClient implementation. | 169 // cc::SurfaceFactoryClient implementation. |
| 168 void ReturnResources(const cc::ReturnedResourceArray& resources) override; | 170 void ReturnResources(const cc::ReturnedResourceArray& resources) override; |
| 169 void SetBeginFrameSource(cc::BeginFrameSource* source) override; | 171 void SetBeginFrameSource(cc::BeginFrameSource* source) override; |
| 170 | 172 |
| 171 // cc::BeginFrameObserver implementation. | 173 // cc::BeginFrameObserver implementation. |
| 172 void OnBeginFrame(const cc::BeginFrameArgs& args) override; | 174 void OnBeginFrame(const cc::BeginFrameArgs& args) override; |
| 173 const cc::BeginFrameArgs& LastUsedBeginFrameArgs() const override; | 175 const cc::BeginFrameArgs& LastUsedBeginFrameArgs() const override; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 // The surface id namespace of the parent RenderWidgetHostView. 0 if none. | 246 // The surface id namespace of the parent RenderWidgetHostView. 0 if none. |
| 245 uint32_t parent_surface_id_namespace_; | 247 uint32_t parent_surface_id_namespace_; |
| 246 | 248 |
| 247 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; | 249 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; |
| 248 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 250 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 249 }; | 251 }; |
| 250 | 252 |
| 251 } // namespace content | 253 } // namespace content |
| 252 | 254 |
| 253 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 255 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |