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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_android.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_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 bool GetScreenColorProfile(std::vector<char>* color_profile) override; 141 bool GetScreenColorProfile(std::vector<char>* color_profile) override;
142 gfx::Rect GetBoundsInRootWindow() override; 142 gfx::Rect GetBoundsInRootWindow() override;
143 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 143 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
144 InputEventAckState ack_result) override; 144 InputEventAckState ack_result) override;
145 InputEventAckState FilterInputEvent( 145 InputEventAckState FilterInputEvent(
146 const blink::WebInputEvent& input_event) override; 146 const blink::WebInputEvent& input_event) override;
147 void OnSetNeedsFlushInput() override; 147 void OnSetNeedsFlushInput() override;
148 void GestureEventAck(const blink::WebGestureEvent& event, 148 void GestureEventAck(const blink::WebGestureEvent& event,
149 InputEventAckState ack_result) override; 149 InputEventAckState ack_result) override;
150 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 150 BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
151 BrowserAccessibilityDelegate* delegate) override; 151 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override;
152 bool LockMouse() override; 152 bool LockMouse() override;
153 void UnlockMouse() override; 153 void UnlockMouse() override;
154 void OnSwapCompositorFrame(uint32_t output_surface_id, 154 void OnSwapCompositorFrame(uint32_t output_surface_id,
155 scoped_ptr<cc::CompositorFrame> frame) override; 155 scoped_ptr<cc::CompositorFrame> frame) override;
156 void ClearCompositorFrame() override; 156 void ClearCompositorFrame() override;
157 void DidOverscroll(const DidOverscrollParams& params) override; 157 void DidOverscroll(const DidOverscrollParams& params) override;
158 void DidStopFlinging() override; 158 void DidStopFlinging() override;
159 uint32_t GetSurfaceIdNamespace() override; 159 uint32_t GetSurfaceIdNamespace() override;
160 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, 160 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels,
161 const SkBitmap& zoomed_bitmap) override; 161 const SkBitmap& zoomed_bitmap) override;
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 gfx::Vector2dF last_scroll_offset_; 408 gfx::Vector2dF last_scroll_offset_;
409 409
410 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; 410 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_;
411 411
412 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 412 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
413 }; 413 };
414 414
415 } // namespace content 415 } // namespace content
416 416
417 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 417 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698