| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 blink::WebMediaPlayer* CreateMediaPlayer( | 494 blink::WebMediaPlayer* CreateMediaPlayer( |
| 495 const blink::WebMediaPlayerSource& source, | 495 const blink::WebMediaPlayerSource& source, |
| 496 blink::WebMediaPlayerClient* client, | 496 blink::WebMediaPlayerClient* client, |
| 497 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 497 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 498 blink::WebContentDecryptionModule* initial_cdm, | 498 blink::WebContentDecryptionModule* initial_cdm, |
| 499 const blink::WebString& sink_id) override; | 499 const blink::WebString& sink_id) override; |
| 500 blink::WebApplicationCacheHost* CreateApplicationCacheHost( | 500 blink::WebApplicationCacheHost* CreateApplicationCacheHost( |
| 501 blink::WebApplicationCacheHostClient* client) override; | 501 blink::WebApplicationCacheHostClient* client) override; |
| 502 blink::WebWorkerContentSettingsClientProxy* | 502 blink::WebWorkerContentSettingsClientProxy* |
| 503 CreateWorkerContentSettingsClientProxy() override; | 503 CreateWorkerContentSettingsClientProxy() override; |
| 504 std::unique_ptr<blink::WebWorkerFetchContext> CreateWorkerFetchContext() |
| 505 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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1424 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1423 | 1425 |
| 1424 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1426 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1425 | 1427 |
| 1426 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1428 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1427 }; | 1429 }; |
| 1428 | 1430 |
| 1429 } // namespace content | 1431 } // namespace content |
| 1430 | 1432 |
| 1431 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1433 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |