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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 // (0, 0) is the top-left corner of the WebContents. | 417 // (0, 0) is the top-left corner of the WebContents. |
418 void AccessibilityScrollToPoint(int acc_obj_id, gfx::Point point); | 418 void AccessibilityScrollToPoint(int acc_obj_id, gfx::Point point); |
419 | 419 |
420 // Relay a request from assistive technology to set text selection. | 420 // Relay a request from assistive technology to set text selection. |
421 void AccessibilitySetTextSelection( | 421 void AccessibilitySetTextSelection( |
422 int acc_obj_id, int start_offset, int end_offset); | 422 int acc_obj_id, int start_offset, int end_offset); |
423 | 423 |
424 // Kill the renderer because we got a fatal accessibility error. | 424 // Kill the renderer because we got a fatal accessibility error. |
425 void FatalAccessibilityTreeError(); | 425 void FatalAccessibilityTreeError(); |
426 | 426 |
427 #if defined(OS_WIN) && defined(USE_AURA) | 427 #if defined(OS_WIN) |
428 void SetParentNativeViewAccessible( | 428 void SetParentNativeViewAccessible( |
429 gfx::NativeViewAccessible accessible_parent); | 429 gfx::NativeViewAccessible accessible_parent); |
430 gfx::NativeViewAccessible GetParentNativeViewAccessible() const; | 430 gfx::NativeViewAccessible GetParentNativeViewAccessible() const; |
431 #endif | 431 #endif |
432 | 432 |
433 // Executes the edit command on the RenderView. | 433 // Executes the edit command on the RenderView. |
434 void ExecuteEditCommand(const std::string& command, | 434 void ExecuteEditCommand(const std::string& command, |
435 const std::string& value); | 435 const std::string& value); |
436 | 436 |
437 // Tells the renderer to scroll the currently focused node into rect only if | 437 // Tells the renderer to scroll the currently focused node into rect only if |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 int64 last_input_number_; | 922 int64 last_input_number_; |
923 | 923 |
924 BrowserRenderingStats rendering_stats_; | 924 BrowserRenderingStats rendering_stats_; |
925 | 925 |
926 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 926 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
927 }; | 927 }; |
928 | 928 |
929 } // namespace content | 929 } // namespace content |
930 | 930 |
931 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 931 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |