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