OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 | 490 |
491 const WebPreferences& webkit_preferences() const { | 491 const WebPreferences& webkit_preferences() const { |
492 return webkit_preferences_; | 492 return webkit_preferences_; |
493 } | 493 } |
494 | 494 |
495 // Called when the "idle" user script state has been reached. See | 495 // Called when the "idle" user script state has been reached. See |
496 // UserScript::DOCUMENT_IDLE. | 496 // UserScript::DOCUMENT_IDLE. |
497 void OnUserScriptIdleTriggered(WebKit::WebFrame* frame); | 497 void OnUserScriptIdleTriggered(WebKit::WebFrame* frame); |
498 | 498 |
499 void OnGetAccessibilityTree(); | 499 void OnGetAccessibilityTree(); |
| 500 void OnSetAccessibilityFocus(int acc_obj_id); |
| 501 void OnAccessibilityDoDefaultAction(int acc_obj_id); |
500 | 502 |
501 #if defined(OS_MACOSX) | 503 #if defined(OS_MACOSX) |
502 // Helper routines for GPU plugin support. Used by the | 504 // Helper routines for GPU plugin support. Used by the |
503 // WebPluginDelegateProxy, which has a pointer to the RenderView. | 505 // WebPluginDelegateProxy, which has a pointer to the RenderView. |
504 gfx::PluginWindowHandle AllocateFakePluginWindowHandle(bool opaque); | 506 gfx::PluginWindowHandle AllocateFakePluginWindowHandle(bool opaque); |
505 void DestroyFakePluginWindowHandle(gfx::PluginWindowHandle window); | 507 void DestroyFakePluginWindowHandle(gfx::PluginWindowHandle window); |
506 void AcceleratedSurfaceSetIOSurface(gfx::PluginWindowHandle window, | 508 void AcceleratedSurfaceSetIOSurface(gfx::PluginWindowHandle window, |
507 int32 width, | 509 int32 width, |
508 int32 height, | 510 int32 height, |
509 uint64 io_surface_identifier); | 511 uint64 io_surface_identifier); |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1215 // in OnClosePage. | 1217 // in OnClosePage. |
1216 int cross_origin_access_count_; | 1218 int cross_origin_access_count_; |
1217 int same_origin_access_count_; | 1219 int same_origin_access_count_; |
1218 | 1220 |
1219 PepperPluginDelegateImpl pepper_delegate_; | 1221 PepperPluginDelegateImpl pepper_delegate_; |
1220 | 1222 |
1221 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1223 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1222 }; | 1224 }; |
1223 | 1225 |
1224 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1226 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |