OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 424 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
425 const blink::WebURL& url); | 425 const blink::WebURL& url); |
426 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 426 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
427 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 427 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
428 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 428 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
429 int arb_robustness_status_code); | 429 int arb_robustness_status_code); |
430 virtual void forwardInputEvent(const blink::WebInputEvent* event); | 430 virtual void forwardInputEvent(const blink::WebInputEvent* event); |
431 virtual void initializeChildFrame(const blink::WebRect& frame_rect, | 431 virtual void initializeChildFrame(const blink::WebRect& frame_rect, |
432 float scale_factor); | 432 float scale_factor); |
433 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); | 433 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); |
| 434 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 435 blink::WebAXEvent event); |
434 | 436 |
435 // WebMediaPlayerDelegate implementation: | 437 // WebMediaPlayerDelegate implementation: |
436 virtual void DidPlay(blink::WebMediaPlayer* player) OVERRIDE; | 438 virtual void DidPlay(blink::WebMediaPlayer* player) OVERRIDE; |
437 virtual void DidPause(blink::WebMediaPlayer* player) OVERRIDE; | 439 virtual void DidPause(blink::WebMediaPlayer* player) OVERRIDE; |
438 virtual void PlayerGone(blink::WebMediaPlayer* player) OVERRIDE; | 440 virtual void PlayerGone(blink::WebMediaPlayer* player) OVERRIDE; |
439 | 441 |
440 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move | 442 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move |
441 // this back to private member. | 443 // this back to private member. |
442 void OnNavigate(const FrameMsg_Navigate_Params& params); | 444 void OnNavigate(const FrameMsg_Navigate_Params& params); |
443 | 445 |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 RendererAccessibility* renderer_accessibility_; | 712 RendererAccessibility* renderer_accessibility_; |
711 | 713 |
712 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 714 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
713 | 715 |
714 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 716 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
715 }; | 717 }; |
716 | 718 |
717 } // namespace content | 719 } // namespace content |
718 | 720 |
719 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 721 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |