| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 class WebContentDecryptionModule; | 93 class WebContentDecryptionModule; |
| 94 class WebPresentationClient; | 94 class WebPresentationClient; |
| 95 class WebPushClient; | 95 class WebPushClient; |
| 96 class WebSecurityOrigin; | 96 class WebSecurityOrigin; |
| 97 enum class WebCachePolicy; | 97 enum class WebCachePolicy; |
| 98 struct WebCompositionUnderline; | 98 struct WebCompositionUnderline; |
| 99 struct WebContextMenuData; | 99 struct WebContextMenuData; |
| 100 struct WebCursorInfo; | 100 struct WebCursorInfo; |
| 101 struct WebFindOptions; | 101 struct WebFindOptions; |
| 102 class WebRelatedAppsFetcher; | 102 class WebRelatedAppsFetcher; |
| 103 class WebWorkerFetchContext; |
| 103 } // namespace blink | 104 } // namespace blink |
| 104 | 105 |
| 105 namespace gfx { | 106 namespace gfx { |
| 106 class Point; | 107 class Point; |
| 107 class Range; | 108 class Range; |
| 108 } | 109 } |
| 109 | 110 |
| 110 namespace media { | 111 namespace media { |
| 111 class CdmFactory; | 112 class CdmFactory; |
| 112 class DecoderFactory; | 113 class DecoderFactory; |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 blink::WebMediaPlayer* CreateMediaPlayer( | 495 blink::WebMediaPlayer* CreateMediaPlayer( |
| 495 const blink::WebMediaPlayerSource& source, | 496 const blink::WebMediaPlayerSource& source, |
| 496 blink::WebMediaPlayerClient* client, | 497 blink::WebMediaPlayerClient* client, |
| 497 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 498 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 498 blink::WebContentDecryptionModule* initial_cdm, | 499 blink::WebContentDecryptionModule* initial_cdm, |
| 499 const blink::WebString& sink_id) override; | 500 const blink::WebString& sink_id) override; |
| 500 blink::WebApplicationCacheHost* CreateApplicationCacheHost( | 501 blink::WebApplicationCacheHost* CreateApplicationCacheHost( |
| 501 blink::WebApplicationCacheHostClient* client) override; | 502 blink::WebApplicationCacheHostClient* client) override; |
| 502 blink::WebWorkerContentSettingsClientProxy* | 503 blink::WebWorkerContentSettingsClientProxy* |
| 503 CreateWorkerContentSettingsClientProxy() override; | 504 CreateWorkerContentSettingsClientProxy() override; |
| 505 blink::WebWorkerFetchContext* CreateWorkerFetchContext() override; |
| 504 blink::WebExternalPopupMenu* CreateExternalPopupMenu( | 506 blink::WebExternalPopupMenu* CreateExternalPopupMenu( |
| 505 const blink::WebPopupMenuInfo& popup_menu_info, | 507 const blink::WebPopupMenuInfo& popup_menu_info, |
| 506 blink::WebExternalPopupMenuClient* popup_menu_client) override; | 508 blink::WebExternalPopupMenuClient* popup_menu_client) override; |
| 507 blink::WebCookieJar* CookieJar() override; | 509 blink::WebCookieJar* CookieJar() override; |
| 508 blink::BlameContext* GetFrameBlameContext() override; | 510 blink::BlameContext* GetFrameBlameContext() override; |
| 509 blink::WebServiceWorkerProvider* CreateServiceWorkerProvider() override; | 511 blink::WebServiceWorkerProvider* CreateServiceWorkerProvider() override; |
| 510 void DidAccessInitialDocument() override; | 512 void DidAccessInitialDocument() override; |
| 511 blink::WebLocalFrame* CreateChildFrame( | 513 blink::WebLocalFrame* CreateChildFrame( |
| 512 blink::WebLocalFrame* parent, | 514 blink::WebLocalFrame* parent, |
| 513 blink::WebTreeScopeType scope, | 515 blink::WebTreeScopeType scope, |
| (...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1422 | 1424 |
| 1423 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1424 | 1426 |
| 1425 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1426 }; | 1428 }; |
| 1427 | 1429 |
| 1428 } // namespace content | 1430 } // namespace content |
| 1429 | 1431 |
| 1430 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |