| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 void SetActive(bool active) override; | 150 void SetActive(bool active) override; |
| 151 void ShowDefinitionForSelection() override; | 151 void ShowDefinitionForSelection() override; |
| 152 bool SupportsSpeech() const override; | 152 bool SupportsSpeech() const override; |
| 153 void SpeakSelection() override; | 153 void SpeakSelection() override; |
| 154 bool IsSpeaking() const override; | 154 bool IsSpeaking() const override; |
| 155 void StopSpeaking() override; | 155 void StopSpeaking() override; |
| 156 #endif // defined(OS_MACOSX) | 156 #endif // defined(OS_MACOSX) |
| 157 | 157 |
| 158 InputEventAckState FilterInputEvent( | 158 InputEventAckState FilterInputEvent( |
| 159 const blink::WebInputEvent& input_event) override; | 159 const blink::WebInputEvent& input_event) override; |
| 160 InputEventAckState FilterChildGestureEvent( |
| 161 const blink::WebGestureEvent& gesture_event) override; |
| 160 void OnSetNeedsFlushInput() override; | 162 void OnSetNeedsFlushInput() override; |
| 161 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 163 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 162 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 164 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
| 163 | 165 |
| 164 // cc::CompositorFrameSinkSupportClient implementation. | 166 // cc::CompositorFrameSinkSupportClient implementation. |
| 165 void DidReceiveCompositorFrameAck( | 167 void DidReceiveCompositorFrameAck( |
| 166 const cc::ReturnedResourceArray& resources) override; | 168 const cc::ReturnedResourceArray& resources) override; |
| 167 void OnBeginFrame(const cc::BeginFrameArgs& args) override; | 169 void OnBeginFrame(const cc::BeginFrameArgs& args) override; |
| 168 void ReclaimResources(const cc::ReturnedResourceArray& resources) override; | 170 void ReclaimResources(const cc::ReturnedResourceArray& resources) override; |
| 169 void WillDrawSurface(const cc::LocalSurfaceId& id, | 171 void WillDrawSurface(const cc::LocalSurfaceId& id, |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 // The background color of the widget. | 269 // The background color of the widget. |
| 268 SkColor background_color_; | 270 SkColor background_color_; |
| 269 | 271 |
| 270 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; | 272 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; |
| 271 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 273 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
| 272 }; | 274 }; |
| 273 | 275 |
| 274 } // namespace content | 276 } // namespace content |
| 275 | 277 |
| 276 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 278 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
| OLD | NEW |