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