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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 shell::mojom::InterfaceProviderRequest request) override; | 449 shell::mojom::InterfaceProviderRequest request) override; |
450 | 450 |
451 // blink::WebFrameClient implementation: | 451 // blink::WebFrameClient implementation: |
452 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 452 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
453 const blink::WebPluginParams& params) override; | 453 const blink::WebPluginParams& params) override; |
454 blink::WebMediaPlayer* createMediaPlayer( | 454 blink::WebMediaPlayer* createMediaPlayer( |
455 const blink::WebMediaPlayerSource& source, | 455 const blink::WebMediaPlayerSource& source, |
456 blink::WebMediaPlayerClient* client, | 456 blink::WebMediaPlayerClient* client, |
457 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 457 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
458 blink::WebContentDecryptionModule* initial_cdm, | 458 blink::WebContentDecryptionModule* initial_cdm, |
459 const blink::WebString& sink_id, | 459 const blink::WebString& sink_id) override; |
460 blink::WebMediaSession* media_session) override; | |
461 blink::WebMediaSession* createMediaSession() override; | 460 blink::WebMediaSession* createMediaSession() override; |
462 blink::WebApplicationCacheHost* createApplicationCacheHost( | 461 blink::WebApplicationCacheHost* createApplicationCacheHost( |
463 blink::WebApplicationCacheHostClient* client) override; | 462 blink::WebApplicationCacheHostClient* client) override; |
464 blink::WebWorkerContentSettingsClientProxy* | 463 blink::WebWorkerContentSettingsClientProxy* |
465 createWorkerContentSettingsClientProxy() override; | 464 createWorkerContentSettingsClientProxy() override; |
466 blink::WebExternalPopupMenu* createExternalPopupMenu( | 465 blink::WebExternalPopupMenu* createExternalPopupMenu( |
467 const blink::WebPopupMenuInfo& popup_menu_info, | 466 const blink::WebPopupMenuInfo& popup_menu_info, |
468 blink::WebExternalPopupMenuClient* popup_menu_client) override; | 467 blink::WebExternalPopupMenuClient* popup_menu_client) override; |
469 blink::WebCookieJar* cookieJar() override; | 468 blink::WebCookieJar* cookieJar() override; |
470 blink::BlameContext* frameBlameContext() override; | 469 blink::BlameContext* frameBlameContext() override; |
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 remote_associated_interfaces_; | 1284 remote_associated_interfaces_; |
1286 | 1285 |
1287 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1286 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1288 | 1287 |
1289 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1288 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1290 }; | 1289 }; |
1291 | 1290 |
1292 } // namespace content | 1291 } // namespace content |
1293 | 1292 |
1294 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1293 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |