Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.h

Issue 2935563002: input: Remove dead code. (Closed)
Patch Set: . Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/render_widget_host_view_child_frame.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 bool SupportsSpeech() const override; 161 bool SupportsSpeech() const override;
162 void SpeakSelection() override; 162 void SpeakSelection() override;
163 bool IsSpeaking() const override; 163 bool IsSpeaking() const override;
164 void StopSpeaking() override; 164 void StopSpeaking() override;
165 #endif // defined(OS_MACOSX) 165 #endif // defined(OS_MACOSX)
166 166
167 InputEventAckState FilterInputEvent( 167 InputEventAckState FilterInputEvent(
168 const blink::WebInputEvent& input_event) override; 168 const blink::WebInputEvent& input_event) override;
169 InputEventAckState FilterChildGestureEvent( 169 InputEventAckState FilterChildGestureEvent(
170 const blink::WebGestureEvent& gesture_event) override; 170 const blink::WebGestureEvent& gesture_event) override;
171 void OnSetNeedsFlushInput() override;
172 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 171 BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
173 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; 172 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override;
174 173
175 // cc::CompositorFrameSinkSupportClient implementation. 174 // cc::CompositorFrameSinkSupportClient implementation.
176 void DidReceiveCompositorFrameAck( 175 void DidReceiveCompositorFrameAck(
177 const cc::ReturnedResourceArray& resources) override; 176 const cc::ReturnedResourceArray& resources) override;
178 void OnBeginFrame(const cc::BeginFrameArgs& args) override; 177 void OnBeginFrame(const cc::BeginFrameArgs& args) override;
179 void ReclaimResources(const cc::ReturnedResourceArray& resources) override; 178 void ReclaimResources(const cc::ReturnedResourceArray& resources) override;
180 void WillDrawSurface(const cc::LocalSurfaceId& id, 179 void WillDrawSurface(const cc::LocalSurfaceId& id,
181 const gfx::Rect& damage_rect) override {} 180 const gfx::Rect& damage_rect) override {}
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 std::unique_ptr<TouchSelectionControllerClientChildFrame> 287 std::unique_ptr<TouchSelectionControllerClientChildFrame>
289 selection_controller_client_; 288 selection_controller_client_;
290 289
291 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; 290 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_;
292 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); 291 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame);
293 }; 292 };
294 293
295 } // namespace content 294 } // namespace content
296 295
297 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 296 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_widget_host_view_child_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698