| 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 23 matching lines...) Expand all Loading... |
| 34 #include "content/renderer/media/android/renderer_media_player_manager.h" | 34 #include "content/renderer/media/android/renderer_media_player_manager.h" |
| 35 #endif | 35 #endif |
| 36 | 36 |
| 37 class GURL; | 37 class GURL; |
| 38 class TransportDIB; | 38 class TransportDIB; |
| 39 struct FrameMsg_Navigate_Params; | 39 struct FrameMsg_Navigate_Params; |
| 40 struct FrameMsg_CommitNavigation_Params; | 40 struct FrameMsg_CommitNavigation_Params; |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 class WebGeolocationClient; | 43 class WebGeolocationClient; |
| 44 class WebInputEvent; | |
| 45 class WebMouseEvent; | 44 class WebMouseEvent; |
| 46 class WebContentDecryptionModule; | 45 class WebContentDecryptionModule; |
| 47 class WebMediaPlayer; | 46 class WebMediaPlayer; |
| 48 class WebNotificationPresenter; | 47 class WebNotificationPresenter; |
| 49 class WebPushClient; | 48 class WebPushClient; |
| 50 class WebSecurityOrigin; | 49 class WebSecurityOrigin; |
| 51 struct WebCompositionUnderline; | 50 struct WebCompositionUnderline; |
| 52 struct WebContextMenuData; | 51 struct WebContextMenuData; |
| 53 struct WebCursorInfo; | 52 struct WebCursorInfo; |
| 54 } | 53 } |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 blink::WebLocalFrame* source_frame, | 442 blink::WebLocalFrame* source_frame, |
| 444 blink::WebFrame* target_frame, | 443 blink::WebFrame* target_frame, |
| 445 blink::WebSecurityOrigin target_origin, | 444 blink::WebSecurityOrigin target_origin, |
| 446 blink::WebDOMMessageEvent event); | 445 blink::WebDOMMessageEvent event); |
| 447 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 446 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
| 448 const blink::WebURL& url); | 447 const blink::WebURL& url); |
| 449 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 448 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
| 450 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 449 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
| 451 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 450 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
| 452 int arb_robustness_status_code); | 451 int arb_robustness_status_code); |
| 453 virtual void forwardInputEvent(const blink::WebInputEvent* event); | |
| 454 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); | 452 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); |
| 455 virtual bool isControlledByServiceWorker(blink::WebDataSource&); | 453 virtual bool isControlledByServiceWorker(blink::WebDataSource&); |
| 456 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 454 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 457 blink::WebAXEvent event); | 455 blink::WebAXEvent event); |
| 458 virtual void didChangeManifest(blink::WebLocalFrame*); | 456 virtual void didChangeManifest(blink::WebLocalFrame*); |
| 459 | 457 |
| 460 // WebMediaPlayerDelegate implementation: | 458 // WebMediaPlayerDelegate implementation: |
| 461 virtual void DidPlay(blink::WebMediaPlayer* player) override; | 459 virtual void DidPlay(blink::WebMediaPlayer* player) override; |
| 462 virtual void DidPause(blink::WebMediaPlayer* player) override; | 460 virtual void DidPause(blink::WebMediaPlayer* player) override; |
| 463 virtual void PlayerGone(blink::WebMediaPlayer* player) override; | 461 virtual void PlayerGone(blink::WebMediaPlayer* player) override; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 #endif | 771 #endif |
| 774 | 772 |
| 775 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 773 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 776 | 774 |
| 777 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 775 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 778 }; | 776 }; |
| 779 | 777 |
| 780 } // namespace content | 778 } // namespace content |
| 781 | 779 |
| 782 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 780 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |