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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 const blink::WebURL& url, | 662 const blink::WebURL& url, |
663 const blink::WebString& title) override; | 663 const blink::WebString& title) override; |
664 void UnregisterProtocolHandler(const blink::WebString& scheme, | 664 void UnregisterProtocolHandler(const blink::WebString& scheme, |
665 const blink::WebURL& url) override; | 665 const blink::WebURL& url) override; |
666 void CheckIfAudioSinkExistsAndIsAuthorized( | 666 void CheckIfAudioSinkExistsAndIsAuthorized( |
667 const blink::WebString& sink_id, | 667 const blink::WebString& sink_id, |
668 const blink::WebSecurityOrigin& security_origin, | 668 const blink::WebSecurityOrigin& security_origin, |
669 blink::WebSetSinkIdCallbacks* web_callbacks) override; | 669 blink::WebSetSinkIdCallbacks* web_callbacks) override; |
670 blink::WebPageVisibilityState VisibilityState() const override; | 670 blink::WebPageVisibilityState VisibilityState() const override; |
671 std::unique_ptr<blink::WebURLLoader> CreateURLLoader() override; | 671 std::unique_ptr<blink::WebURLLoader> CreateURLLoader() override; |
| 672 std::unique_ptr<blink::WebMediaIPH> CreateMediaIPH() override; |
672 void DraggableRegionsChanged() override; | 673 void DraggableRegionsChanged() override; |
673 | 674 |
674 // WebFrameSerializerClient implementation: | 675 // WebFrameSerializerClient implementation: |
675 void DidSerializeDataForFrame( | 676 void DidSerializeDataForFrame( |
676 const blink::WebCString& data, | 677 const blink::WebCString& data, |
677 blink::WebFrameSerializerClient::FrameSerializationStatus status) | 678 blink::WebFrameSerializerClient::FrameSerializationStatus status) |
678 override; | 679 override; |
679 | 680 |
680 // Binds to the site engagement service in the browser. | 681 // Binds to the site engagement service in the browser. |
681 void BindEngagement(blink::mojom::EngagementClientAssociatedRequest request); | 682 void BindEngagement(blink::mojom::EngagementClientAssociatedRequest request); |
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1420 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; | 1421 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; |
1421 | 1422 |
1422 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1423 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1423 | 1424 |
1424 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1425 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1425 }; | 1426 }; |
1426 | 1427 |
1427 } // namespace content | 1428 } // namespace content |
1428 | 1429 |
1429 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1430 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |