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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 | 455 |
456 // blink::WebFrameClient implementation: | 456 // blink::WebFrameClient implementation: |
457 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, | 457 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, |
458 const blink::WebPluginParams& params) override; | 458 const blink::WebPluginParams& params) override; |
459 blink::WebMediaPlayer* createMediaPlayer( | 459 blink::WebMediaPlayer* createMediaPlayer( |
460 const blink::WebMediaPlayerSource& source, | 460 const blink::WebMediaPlayerSource& source, |
461 blink::WebMediaPlayerClient* client, | 461 blink::WebMediaPlayerClient* client, |
462 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 462 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
463 blink::WebContentDecryptionModule* initial_cdm, | 463 blink::WebContentDecryptionModule* initial_cdm, |
464 const blink::WebString& sink_id) override; | 464 const blink::WebString& sink_id) override; |
465 blink::WebMediaSession* createMediaSession() override; | |
466 blink::WebApplicationCacheHost* createApplicationCacheHost( | 465 blink::WebApplicationCacheHost* createApplicationCacheHost( |
467 blink::WebApplicationCacheHostClient* client) override; | 466 blink::WebApplicationCacheHostClient* client) override; |
468 blink::WebWorkerContentSettingsClientProxy* | 467 blink::WebWorkerContentSettingsClientProxy* |
469 createWorkerContentSettingsClientProxy() override; | 468 createWorkerContentSettingsClientProxy() override; |
470 blink::WebExternalPopupMenu* createExternalPopupMenu( | 469 blink::WebExternalPopupMenu* createExternalPopupMenu( |
471 const blink::WebPopupMenuInfo& popup_menu_info, | 470 const blink::WebPopupMenuInfo& popup_menu_info, |
472 blink::WebExternalPopupMenuClient* popup_menu_client) override; | 471 blink::WebExternalPopupMenuClient* popup_menu_client) override; |
473 blink::WebCookieJar* cookieJar() override; | 472 blink::WebCookieJar* cookieJar() override; |
474 blink::BlameContext* frameBlameContext() override; | 473 blink::BlameContext* frameBlameContext() override; |
475 blink::WebServiceWorkerProvider* createServiceWorkerProvider() override; | 474 blink::WebServiceWorkerProvider* createServiceWorkerProvider() override; |
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 bool name_changed_before_first_commit_ = false; | 1309 bool name_changed_before_first_commit_ = false; |
1311 | 1310 |
1312 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1311 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1313 | 1312 |
1314 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1313 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1315 }; | 1314 }; |
1316 | 1315 |
1317 } // namespace content | 1316 } // namespace content |
1318 | 1317 |
1319 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1318 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |