| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 #if defined(OS_ANDROID) | 78 #if defined(OS_ANDROID) |
| 79 #include "content/renderer/media/android/renderer_media_player_manager.h" | 79 #include "content/renderer/media/android/renderer_media_player_manager.h" |
| 80 #endif | 80 #endif |
| 81 | 81 |
| 82 struct FrameMsg_PostMessage_Params; | 82 struct FrameMsg_PostMessage_Params; |
| 83 struct FrameMsg_SerializeAsMHTML_Params; | 83 struct FrameMsg_SerializeAsMHTML_Params; |
| 84 struct FrameMsg_TextTrackSettings_Params; | 84 struct FrameMsg_TextTrackSettings_Params; |
| 85 | 85 |
| 86 namespace blink { | 86 namespace blink { |
| 87 class InterfaceRegistry; | |
| 88 class WebContentDecryptionModule; | 87 class WebContentDecryptionModule; |
| 89 class WebPresentationClient; | 88 class WebPresentationClient; |
| 90 class WebPushClient; | 89 class WebPushClient; |
| 91 class WebSecurityOrigin; | 90 class WebSecurityOrigin; |
| 92 enum class WebCachePolicy; | 91 enum class WebCachePolicy; |
| 93 struct WebCompositionUnderline; | 92 struct WebCompositionUnderline; |
| 94 struct WebContextMenuData; | 93 struct WebContextMenuData; |
| 95 struct WebCursorInfo; | 94 struct WebCursorInfo; |
| 96 struct WebFindOptions; | 95 struct WebFindOptions; |
| 97 } // namespace blink | 96 } // namespace blink |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 void exitFullscreen() override; | 652 void exitFullscreen() override; |
| 654 void registerProtocolHandler(const blink::WebString& scheme, | 653 void registerProtocolHandler(const blink::WebString& scheme, |
| 655 const blink::WebURL& url, | 654 const blink::WebURL& url, |
| 656 const blink::WebString& title) override; | 655 const blink::WebString& title) override; |
| 657 void unregisterProtocolHandler(const blink::WebString& scheme, | 656 void unregisterProtocolHandler(const blink::WebString& scheme, |
| 658 const blink::WebURL& url) override; | 657 const blink::WebURL& url) override; |
| 659 void checkIfAudioSinkExistsAndIsAuthorized( | 658 void checkIfAudioSinkExistsAndIsAuthorized( |
| 660 const blink::WebString& sink_id, | 659 const blink::WebString& sink_id, |
| 661 const blink::WebSecurityOrigin& security_origin, | 660 const blink::WebSecurityOrigin& security_origin, |
| 662 blink::WebSetSinkIdCallbacks* web_callbacks) override; | 661 blink::WebSetSinkIdCallbacks* web_callbacks) override; |
| 663 blink::InterfaceProvider* interfaceProvider() override; | |
| 664 blink::InterfaceRegistry* interfaceRegistry() override; | |
| 665 blink::WebPageVisibilityState visibilityState() const override; | 662 blink::WebPageVisibilityState visibilityState() const override; |
| 666 | 663 |
| 667 // WebFrameSerializerClient implementation: | 664 // WebFrameSerializerClient implementation: |
| 668 void didSerializeDataForFrame( | 665 void didSerializeDataForFrame( |
| 669 const blink::WebCString& data, | 666 const blink::WebCString& data, |
| 670 blink::WebFrameSerializerClient::FrameSerializationStatus status) | 667 blink::WebFrameSerializerClient::FrameSerializationStatus status) |
| 671 override; | 668 override; |
| 672 | 669 |
| 673 // Binds to the site engagement service in the browser. | 670 // Binds to the site engagement service in the browser. |
| 674 void BindEngagement(blink::mojom::EngagementClientAssociatedRequest request); | 671 void BindEngagement(blink::mojom::EngagementClientAssociatedRequest request); |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 bool browser_side_navigation_pending_ = false; | 1379 bool browser_side_navigation_pending_ = false; |
| 1383 | 1380 |
| 1384 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1381 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1385 | 1382 |
| 1386 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1383 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1387 }; | 1384 }; |
| 1388 | 1385 |
| 1389 } // namespace content | 1386 } // namespace content |
| 1390 | 1387 |
| 1391 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1388 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |