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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 1308983005: NOT FOR LANDING Implement WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add forward declaration 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 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 #include "core/loader/HistoryItem.h" 51 #include "core/loader/HistoryItem.h"
52 #include "core/page/Page.h" 52 #include "core/page/Page.h"
53 #include "core/page/WindowFeatures.h" 53 #include "core/page/WindowFeatures.h"
54 #include "modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.h" 54 #include "modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.h"
55 #include "modules/device_light/DeviceLightController.h" 55 #include "modules/device_light/DeviceLightController.h"
56 #include "modules/device_orientation/DeviceMotionController.h" 56 #include "modules/device_orientation/DeviceMotionController.h"
57 #include "modules/device_orientation/DeviceOrientationAbsoluteController.h" 57 #include "modules/device_orientation/DeviceOrientationAbsoluteController.h"
58 #include "modules/device_orientation/DeviceOrientationController.h" 58 #include "modules/device_orientation/DeviceOrientationController.h"
59 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h" 59 #include "modules/encryptedmedia/HTMLMediaElementEncryptedMedia.h"
60 #include "modules/gamepad/NavigatorGamepad.h" 60 #include "modules/gamepad/NavigatorGamepad.h"
61 #include "modules/mediasession/HTMLMediaElementMediaSession.h"
61 #include "modules/mediasession/MediaSession.h" 62 #include "modules/mediasession/MediaSession.h"
62 #include "modules/serviceworkers/NavigatorServiceWorker.h" 63 #include "modules/serviceworkers/NavigatorServiceWorker.h"
63 #include "modules/storage/DOMWindowStorageController.h" 64 #include "modules/storage/DOMWindowStorageController.h"
64 #include "modules/vr/NavigatorVRDevice.h" 65 #include "modules/vr/NavigatorVRDevice.h"
65 #include "platform/MIMETypeRegistry.h" 66 #include "platform/MIMETypeRegistry.h"
66 #include "platform/RuntimeEnabledFeatures.h" 67 #include "platform/RuntimeEnabledFeatures.h"
67 #include "platform/UserGestureIndicator.h" 68 #include "platform/UserGestureIndicator.h"
68 #include "platform/exported/WrappedResourceRequest.h" 69 #include "platform/exported/WrappedResourceRequest.h"
69 #include "platform/exported/WrappedResourceResponse.h" 70 #include "platform/exported/WrappedResourceResponse.h"
70 #include "platform/fonts/GlyphPageTreeNode.h" 71 #include "platform/fonts/GlyphPageTreeNode.h"
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 HTMLMediaElement& htmlMediaElement, 795 HTMLMediaElement& htmlMediaElement,
795 const WebURL& url, 796 const WebURL& url,
796 WebMediaPlayerClient* client) 797 WebMediaPlayerClient* client)
797 { 798 {
798 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame( 799 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(
799 htmlMediaElement.document().frame()); 800 htmlMediaElement.document().frame());
800 801
801 if (!webFrame || !webFrame->client()) 802 if (!webFrame || !webFrame->client())
802 return nullptr; 803 return nullptr;
803 804
805 WebMediaSession* webMediaSession = nullptr;
806 if (MediaSession* session = HTMLMediaElementMediaSession::session(htmlMediaE lement))
807 webMediaSession = session->webMediaSession();
808
804 HTMLMediaElementEncryptedMedia& encryptedMedia = HTMLMediaElementEncryptedMe dia::from(htmlMediaElement); 809 HTMLMediaElementEncryptedMedia& encryptedMedia = HTMLMediaElementEncryptedMe dia::from(htmlMediaElement);
805 WebString sinkId(HTMLMediaElementAudioOutputDevice::sinkId(htmlMediaElement) ); 810 WebString sinkId(HTMLMediaElementAudioOutputDevice::sinkId(htmlMediaElement) );
806 return adoptPtr(webFrame->client()->createMediaPlayer(webFrame, url, 811 return adoptPtr(webFrame->client()->createMediaPlayer(webFrame, url,
807 client, &encryptedMedia, 812 client, &encryptedMedia,
808 encryptedMedia.contentDecryptionModule(), sinkId)); 813 encryptedMedia.contentDecryptionModule(), sinkId, webMediaSession));
809 } 814 }
810 815
811 PassOwnPtr<WebMediaSession> FrameLoaderClientImpl::createWebMediaSession() 816 PassOwnPtr<WebMediaSession> FrameLoaderClientImpl::createWebMediaSession()
812 { 817 {
813 if (!m_webFrame->client()) 818 if (!m_webFrame->client())
814 return nullptr; 819 return nullptr;
815 820
816 return adoptPtr(m_webFrame->client()->createMediaSession()); 821 return adoptPtr(m_webFrame->client()->createMediaSession());
817 } 822 }
818 823
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 1006
1002 void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde nTerminationDisablerType type) 1007 void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, Sudde nTerminationDisablerType type)
1003 { 1008 {
1004 if (m_webFrame->client()) { 1009 if (m_webFrame->client()) {
1005 m_webFrame->client()->suddenTerminationDisablerChanged( 1010 m_webFrame->client()->suddenTerminationDisablerChanged(
1006 present, static_cast<WebFrameClient::SuddenTerminationDisablerType>( type)); 1011 present, static_cast<WebFrameClient::SuddenTerminationDisablerType>( type));
1007 } 1012 }
1008 } 1013 }
1009 1014
1010 } // namespace blink 1015 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/mediasession/MediaSession.h ('k') | third_party/WebKit/public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698