| 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 // blink::WebFrameClient implementation: | 412 // blink::WebFrameClient implementation: |
| 413 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 413 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 414 const blink::WebPluginParams& params) override; | 414 const blink::WebPluginParams& params) override; |
| 415 blink::WebMediaPlayer* createMediaPlayer( | 415 blink::WebMediaPlayer* createMediaPlayer( |
| 416 blink::WebLocalFrame* frame, | 416 blink::WebLocalFrame* frame, |
| 417 blink::WebMediaPlayer::LoadType load_type, | 417 blink::WebMediaPlayer::LoadType load_type, |
| 418 const blink::WebURL& url, | 418 const blink::WebURL& url, |
| 419 blink::WebMediaPlayerClient* client, | 419 blink::WebMediaPlayerClient* client, |
| 420 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 420 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 421 blink::WebContentDecryptionModule* initial_cdm, | 421 blink::WebContentDecryptionModule* initial_cdm, |
| 422 const blink::WebString& sink_id) override; | 422 const blink::WebString& sink_id, |
| 423 blink::WebMediaSession* media_session) override; |
| 423 blink::WebMediaSession* createMediaSession() override; | 424 blink::WebMediaSession* createMediaSession() override; |
| 424 blink::WebApplicationCacheHost* createApplicationCacheHost( | 425 blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 425 blink::WebLocalFrame* frame, | 426 blink::WebLocalFrame* frame, |
| 426 blink::WebApplicationCacheHostClient* client) override; | 427 blink::WebApplicationCacheHostClient* client) override; |
| 427 blink::WebWorkerContentSettingsClientProxy* | 428 blink::WebWorkerContentSettingsClientProxy* |
| 428 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame) override; | 429 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame) override; |
| 429 blink::WebExternalPopupMenu* createExternalPopupMenu( | 430 blink::WebExternalPopupMenu* createExternalPopupMenu( |
| 430 const blink::WebPopupMenuInfo& popup_menu_info, | 431 const blink::WebPopupMenuInfo& popup_menu_info, |
| 431 blink::WebExternalPopupMenuClient* popup_menu_client) override; | 432 blink::WebExternalPopupMenuClient* popup_menu_client) override; |
| 432 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override; | 433 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override; |
| (...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 #endif | 1197 #endif |
| 1197 | 1198 |
| 1198 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1199 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1199 | 1200 |
| 1200 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1201 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1201 }; | 1202 }; |
| 1202 | 1203 |
| 1203 } // namespace content | 1204 } // namespace content |
| 1204 | 1205 |
| 1205 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1206 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |