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

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

Issue 2774683002: Re-land: Add a window property to associate RWHVA with its child AX tree ID (Closed)
Patch Set: Created 3 years, 9 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 156 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
157 InputEventAckState ack_result) override; 157 InputEventAckState ack_result) override;
158 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() 158 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget()
159 override; 159 override;
160 InputEventAckState FilterInputEvent( 160 InputEventAckState FilterInputEvent(
161 const blink::WebInputEvent& input_event) override; 161 const blink::WebInputEvent& input_event) override;
162 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 162 BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
163 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; 163 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override;
164 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 164 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
165 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 165 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
166 void SetMainFrameAXTreeID(ui::AXTreeIDRegistry::AXTreeID id) override;
166 bool LockMouse() override; 167 bool LockMouse() override;
167 void UnlockMouse() override; 168 void UnlockMouse() override;
168 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, 169 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id,
169 const cc::LocalSurfaceId& local_surface_id, 170 const cc::LocalSurfaceId& local_surface_id,
170 cc::CompositorFrame frame) override; 171 cc::CompositorFrame frame) override;
171 void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) override; 172 void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) override;
172 void ClearCompositorFrame() override; 173 void ClearCompositorFrame() override;
173 void DidStopFlinging() override; 174 void DidStopFlinging() override;
174 void OnDidNavigateMainFrameToNewPage() override; 175 void OnDidNavigateMainFrameToNewPage() override;
175 cc::FrameSinkId GetFrameSinkId() override; 176 cc::FrameSinkId GetFrameSinkId() override;
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; 588 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_;
588 589
589 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 590 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
590 591
591 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 592 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
592 }; 593 };
593 594
594 } // namespace content 595 } // namespace content
595 596
596 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 597 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698