| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 401 |
| 402 // blink::WebFrameClient implementation: | 402 // blink::WebFrameClient implementation: |
| 403 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 403 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
| 404 const blink::WebPluginParams& params) override; | 404 const blink::WebPluginParams& params) override; |
| 405 blink::WebMediaPlayer* createMediaPlayer( | 405 blink::WebMediaPlayer* createMediaPlayer( |
| 406 blink::WebLocalFrame* frame, | 406 blink::WebLocalFrame* frame, |
| 407 const blink::WebURL& url, | 407 const blink::WebURL& url, |
| 408 blink::WebMediaPlayerClient* client, | 408 blink::WebMediaPlayerClient* client, |
| 409 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 409 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 410 blink::WebContentDecryptionModule* initial_cdm, | 410 blink::WebContentDecryptionModule* initial_cdm, |
| 411 const blink::WebString& sink_id) override; | 411 const blink::WebString& sink_id, |
| 412 blink::WebMediaSession* media_session) override; |
| 412 blink::WebMediaSession* createMediaSession() override; | 413 blink::WebMediaSession* createMediaSession() override; |
| 413 blink::WebApplicationCacheHost* createApplicationCacheHost( | 414 blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 414 blink::WebLocalFrame* frame, | 415 blink::WebLocalFrame* frame, |
| 415 blink::WebApplicationCacheHostClient* client) override; | 416 blink::WebApplicationCacheHostClient* client) override; |
| 416 blink::WebWorkerContentSettingsClientProxy* | 417 blink::WebWorkerContentSettingsClientProxy* |
| 417 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame) override; | 418 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame) override; |
| 418 blink::WebExternalPopupMenu* createExternalPopupMenu( | 419 blink::WebExternalPopupMenu* createExternalPopupMenu( |
| 419 const blink::WebPopupMenuInfo& popup_menu_info, | 420 const blink::WebPopupMenuInfo& popup_menu_info, |
| 420 blink::WebExternalPopupMenuClient* popup_menu_client) override; | 421 blink::WebExternalPopupMenuClient* popup_menu_client) override; |
| 421 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override; | 422 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override; |
| (...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 #endif | 1167 #endif |
| 1167 | 1168 |
| 1168 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1169 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1169 | 1170 |
| 1170 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1171 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1171 }; | 1172 }; |
| 1172 | 1173 |
| 1173 } // namespace content | 1174 } // namespace content |
| 1174 | 1175 |
| 1175 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1176 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |