Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2367393002: Migrating MediaSession messages to mojo (Closed)
Patch Set: blink typemap (need to revert blink typemap, only need content/ reivew) Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 451
452 // blink::WebFrameClient implementation: 452 // blink::WebFrameClient implementation:
453 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, 453 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame,
454 const blink::WebPluginParams& params) override; 454 const blink::WebPluginParams& params) override;
455 blink::WebMediaPlayer* createMediaPlayer( 455 blink::WebMediaPlayer* createMediaPlayer(
456 const blink::WebMediaPlayerSource& source, 456 const blink::WebMediaPlayerSource& source,
457 blink::WebMediaPlayerClient* client, 457 blink::WebMediaPlayerClient* client,
458 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 458 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
459 blink::WebContentDecryptionModule* initial_cdm, 459 blink::WebContentDecryptionModule* initial_cdm,
460 const blink::WebString& sink_id) override; 460 const blink::WebString& sink_id) override;
461 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;
471 blink::WebServiceWorkerProvider* createServiceWorkerProvider() override; 470 blink::WebServiceWorkerProvider* createServiceWorkerProvider() override;
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
1294 remote_associated_interfaces_; 1293 remote_associated_interfaces_;
1295 1294
1296 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1295 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1297 1296
1298 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1297 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1299 }; 1298 };
1300 1299
1301 } // namespace content 1300 } // namespace content
1302 1301
1303 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1302 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698