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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 451 blink::WebSecurityOrigin target_origin, | 451 blink::WebSecurityOrigin target_origin, |
| 452 blink::WebDOMMessageEvent event); | 452 blink::WebDOMMessageEvent event); |
| 453 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 453 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
| 454 const blink::WebURL& url); | 454 const blink::WebURL& url); |
| 455 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 455 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
| 456 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 456 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
| 457 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 457 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
| 458 int arb_robustness_status_code); | 458 int arb_robustness_status_code); |
| 459 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); | 459 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); |
| 460 virtual bool isControlledByServiceWorker(blink::WebDataSource&); | 460 virtual bool isControlledByServiceWorker(blink::WebDataSource&); |
| 461 virtual int64_t serviceWorkerID(blink::WebDataSource&); | |
|
jamesr
2014/10/28 22:31:37
in chromium land (which this is) all parameters ge
nhiroki
2014/10/29 03:11:52
Done.
| |
| 461 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 462 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 462 blink::WebAXEvent event); | 463 blink::WebAXEvent event); |
| 463 virtual void didChangeManifest(blink::WebLocalFrame*); | 464 virtual void didChangeManifest(blink::WebLocalFrame*); |
| 464 | 465 |
| 465 // WebMediaPlayerDelegate implementation: | 466 // WebMediaPlayerDelegate implementation: |
| 466 void DidPlay(blink::WebMediaPlayer* player) override; | 467 void DidPlay(blink::WebMediaPlayer* player) override; |
| 467 void DidPause(blink::WebMediaPlayer* player) override; | 468 void DidPause(blink::WebMediaPlayer* player) override; |
| 468 void PlayerGone(blink::WebMediaPlayer* player) override; | 469 void PlayerGone(blink::WebMediaPlayer* player) override; |
| 469 | 470 |
| 470 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move | 471 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 780 #endif | 781 #endif |
| 781 | 782 |
| 782 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 783 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 783 | 784 |
| 784 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 785 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 785 }; | 786 }; |
| 786 | 787 |
| 787 } // namespace content | 788 } // namespace content |
| 788 | 789 |
| 789 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 790 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |