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

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

Issue 2367393002: Migrating MediaSession messages to mojo (Closed)
Patch Set: fixed layout tests 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « content/renderer/media/android/webmediasession_android_unittest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698