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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 1489913003: Handle pointer-events: none in browser process hittesting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: readding header Created 4 years, 11 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 bool LockMouse() override; 188 bool LockMouse() override;
189 void UnlockMouse() override; 189 void UnlockMouse() override;
190 void OnSwapCompositorFrame(uint32_t output_surface_id, 190 void OnSwapCompositorFrame(uint32_t output_surface_id,
191 scoped_ptr<cc::CompositorFrame> frame) override; 191 scoped_ptr<cc::CompositorFrame> frame) override;
192 void ClearCompositorFrame() override; 192 void ClearCompositorFrame() override;
193 void DidStopFlinging() override; 193 void DidStopFlinging() override;
194 void OnDidNavigateMainFrameToNewPage() override; 194 void OnDidNavigateMainFrameToNewPage() override;
195 void LockCompositingSurface() override; 195 void LockCompositingSurface() override;
196 void UnlockCompositingSurface() override; 196 void UnlockCompositingSurface() override;
197 uint32_t GetSurfaceIdNamespace() override; 197 uint32_t GetSurfaceIdNamespace() override;
198 uint32_t SurfaceIdNamespaceAtPoint(const gfx::Point& point, 198 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate,
199 const gfx::Point& point,
199 gfx::Point* transformed_point) override; 200 gfx::Point* transformed_point) override;
200 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; 201 void ProcessMouseEvent(const blink::WebMouseEvent& event) override;
201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; 202 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override;
202 void ProcessTouchEvent(const blink::WebTouchEvent& event, 203 void ProcessTouchEvent(const blink::WebTouchEvent& event,
203 const ui::LatencyInfo& latency) override; 204 const ui::LatencyInfo& latency) override;
204 void TransformPointToLocalCoordSpace(const gfx::Point& point, 205 void TransformPointToLocalCoordSpace(const gfx::Point& point,
205 cc::SurfaceId original_surface, 206 cc::SurfaceId original_surface,
206 gfx::Point* transformed_point) override; 207 gfx::Point* transformed_point) override;
207 208
208 #if defined(OS_WIN) 209 #if defined(OS_WIN)
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 float device_scale_factor_; 701 float device_scale_factor_;
701 702
702 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 703 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
703 704
704 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 705 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
705 }; 706 };
706 707
707 } // namespace content 708 } // namespace content
708 709
709 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 710 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698