Chromium Code Reviews| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 443 blink::WebLocalFrame* source_frame, | 443 blink::WebLocalFrame* source_frame, |
| 444 blink::WebFrame* target_frame, | 444 blink::WebFrame* target_frame, |
| 445 blink::WebSecurityOrigin target_origin, | 445 blink::WebSecurityOrigin target_origin, |
| 446 blink::WebDOMMessageEvent event); | 446 blink::WebDOMMessageEvent event); |
| 447 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 447 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
| 448 const blink::WebURL& url); | 448 const blink::WebURL& url); |
| 449 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 449 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
| 450 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 450 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
| 451 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 451 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
| 452 int arb_robustness_status_code); | 452 int arb_robustness_status_code); |
| 453 virtual void forwardInputEvent(const blink::WebInputEvent* event); | |
|
kenrb
2014/10/10 19:41:58
Can we remove the forward declaration of WebInputE
Charlie Reis
2014/10/10 19:49:57
Yep, done.
| |
| 454 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); | 453 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); |
| 455 virtual bool isControlledByServiceWorker(blink::WebDataSource&); | 454 virtual bool isControlledByServiceWorker(blink::WebDataSource&); |
| 456 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 455 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 457 blink::WebAXEvent event); | 456 blink::WebAXEvent event); |
| 458 virtual void didChangeManifest(blink::WebLocalFrame*); | 457 virtual void didChangeManifest(blink::WebLocalFrame*); |
| 459 | 458 |
| 460 // WebMediaPlayerDelegate implementation: | 459 // WebMediaPlayerDelegate implementation: |
| 461 virtual void DidPlay(blink::WebMediaPlayer* player) override; | 460 virtual void DidPlay(blink::WebMediaPlayer* player) override; |
| 462 virtual void DidPause(blink::WebMediaPlayer* player) override; | 461 virtual void DidPause(blink::WebMediaPlayer* player) override; |
| 463 virtual void PlayerGone(blink::WebMediaPlayer* player) override; | 462 virtual void PlayerGone(blink::WebMediaPlayer* player) override; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 773 #endif | 772 #endif |
| 774 | 773 |
| 775 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 774 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 776 | 775 |
| 777 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 776 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 778 }; | 777 }; |
| 779 | 778 |
| 780 } // namespace content | 779 } // namespace content |
| 781 | 780 |
| 782 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 781 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |