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

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

Issue 2182693003: Filter GestureFlingStarts with Vx=Vy=0 in RenderWidgetHostViewChildFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 years, 4 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
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