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

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

Issue 1585163002: Media Session: prepare for implicit activation of user created session (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Be clearer about session being a media_session Created 4 years, 11 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698