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

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

Issue 290633002: Implement Android accessible hit testing using an IPC to the renderer process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@better_logging_2
Patch Set: Remove unused function Created 6 years, 7 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_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 virtual void AccessibilityScrollToMakeVisible( 183 virtual void AccessibilityScrollToMakeVisible(
184 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; 184 int acc_obj_id, gfx::Rect subfocus) OVERRIDE;
185 virtual void AccessibilityScrollToPoint( 185 virtual void AccessibilityScrollToPoint(
186 int acc_obj_id, gfx::Point point) OVERRIDE; 186 int acc_obj_id, gfx::Point point) OVERRIDE;
187 virtual void AccessibilitySetTextSelection( 187 virtual void AccessibilitySetTextSelection(
188 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; 188 int acc_obj_id, int start_offset, int end_offset) OVERRIDE;
189 virtual bool AccessibilityViewHasFocus() const OVERRIDE; 189 virtual bool AccessibilityViewHasFocus() const OVERRIDE;
190 virtual gfx::Rect AccessibilityGetViewBounds() const OVERRIDE; 190 virtual gfx::Rect AccessibilityGetViewBounds() const OVERRIDE;
191 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds) 191 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds)
192 const OVERRIDE; 192 const OVERRIDE;
193 virtual void AccessibilityHitTest(const gfx::Point& point) OVERRIDE;
193 virtual void AccessibilityFatalError() OVERRIDE; 194 virtual void AccessibilityFatalError() OVERRIDE;
194 195
195 const NativeWebKeyboardEvent* GetLastKeyboardEvent() const; 196 const NativeWebKeyboardEvent* GetLastKeyboardEvent() const;
196 197
197 // Notification that the screen info has changed. 198 // Notification that the screen info has changed.
198 void NotifyScreenInfoChanged(); 199 void NotifyScreenInfoChanged();
199 200
200 // Invalidates the cached screen info so that next resize request 201 // Invalidates the cached screen info so that next resize request
201 // will carry the up to date screen info. Unlike 202 // will carry the up to date screen info. Unlike
202 // |NotifyScreenInfoChanged|, this doesn't send a message to the renderer. 203 // |NotifyScreenInfoChanged|, this doesn't send a message to the renderer.
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 #endif 875 #endif
875 876
876 int64 last_input_number_; 877 int64 last_input_number_;
877 878
878 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); 879 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl);
879 }; 880 };
880 881
881 } // namespace content 882 } // namespace content
882 883
883 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ 884 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.cc ('k') | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698