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

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

Issue 1809793002: Fix connection between BrowserAccessibilityManager and ContentViewCore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: InternalGetChild -> PlatformGetChild so we can walk into iframes Created 4 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 void WheelEventAck(const blink::WebMouseWheelEvent& event, 173 void WheelEventAck(const blink::WebMouseWheelEvent& event,
174 InputEventAckState ack_result) override; 174 InputEventAckState ack_result) override;
175 void GestureEventAck(const blink::WebGestureEvent& event, 175 void GestureEventAck(const blink::WebGestureEvent& event,
176 InputEventAckState ack_result) override; 176 InputEventAckState ack_result) override;
177 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 177 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
178 InputEventAckState ack_result) override; 178 InputEventAckState ack_result) override;
179 scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() override; 179 scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() override;
180 InputEventAckState FilterInputEvent( 180 InputEventAckState FilterInputEvent(
181 const blink::WebInputEvent& input_event) override; 181 const blink::WebInputEvent& input_event) override;
182 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 182 BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
183 BrowserAccessibilityDelegate* delegate) override; 183 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override;
184 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 184 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
185 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 185 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
186 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, 186 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels,
187 const SkBitmap& zoomed_bitmap) override; 187 const SkBitmap& zoomed_bitmap) override;
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;
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 bool disable_input_event_router_for_testing_; 711 bool disable_input_event_router_for_testing_;
712 712
713 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 713 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
714 714
715 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 715 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
716 }; 716 };
717 717
718 } // namespace content 718 } // namespace content
719 719
720 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 720 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698