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

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

Issue 1415923003: Introduce WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 377
378 // blink::WebFrameClient implementation: 378 // blink::WebFrameClient implementation:
379 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, 379 blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame,
380 const blink::WebPluginParams& params) override; 380 const blink::WebPluginParams& params) override;
381 blink::WebMediaPlayer* createMediaPlayer( 381 blink::WebMediaPlayer* createMediaPlayer(
382 blink::WebLocalFrame* frame, 382 blink::WebLocalFrame* frame,
383 const blink::WebURL& url, 383 const blink::WebURL& url,
384 blink::WebMediaPlayerClient* client, 384 blink::WebMediaPlayerClient* client,
385 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 385 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
386 blink::WebContentDecryptionModule* initial_cdm) override; 386 blink::WebContentDecryptionModule* initial_cdm) override;
387 blink::WebMediaSession* createMediaSession() override;
387 blink::WebApplicationCacheHost* createApplicationCacheHost( 388 blink::WebApplicationCacheHost* createApplicationCacheHost(
388 blink::WebLocalFrame* frame, 389 blink::WebLocalFrame* frame,
389 blink::WebApplicationCacheHostClient* client) override; 390 blink::WebApplicationCacheHostClient* client) override;
390 blink::WebWorkerContentSettingsClientProxy* 391 blink::WebWorkerContentSettingsClientProxy*
391 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame) override; 392 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame) override;
392 blink::WebExternalPopupMenu* createExternalPopupMenu( 393 blink::WebExternalPopupMenu* createExternalPopupMenu(
393 const blink::WebPopupMenuInfo& popup_menu_info, 394 const blink::WebPopupMenuInfo& popup_menu_info,
394 blink::WebExternalPopupMenuClient* popup_menu_client) override; 395 blink::WebExternalPopupMenuClient* popup_menu_client) override;
395 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override; 396 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override;
396 blink::WebServiceWorkerProvider* createServiceWorkerProvider( 397 blink::WebServiceWorkerProvider* createServiceWorkerProvider(
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 #endif 1062 #endif
1062 1063
1063 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1064 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1064 1065
1065 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1066 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1066 }; 1067 };
1067 1068
1068 } // namespace content 1069 } // namespace content
1069 1070
1070 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1071 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/android/webmediasession_android.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698