| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |