OLD | NEW |
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 #include "content/renderer/render_frame_impl.h" | 5 #include "content/renderer/render_frame_impl.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 #include "content/renderer/media/crypto/renderer_cdm_manager.h" | 179 #include "content/renderer/media/crypto/renderer_cdm_manager.h" |
180 #endif | 180 #endif |
181 | 181 |
182 #if defined(ENABLE_MEDIA_MOJO_RENDERER) | 182 #if defined(ENABLE_MEDIA_MOJO_RENDERER) |
183 #include "content/renderer/media/content_media_service_provider.h" | 183 #include "content/renderer/media/content_media_service_provider.h" |
184 #include "media/mojo/services/mojo_renderer_factory.h" | 184 #include "media/mojo/services/mojo_renderer_factory.h" |
185 #else | 185 #else |
186 #include "media/renderers/default_renderer_factory.h" | 186 #include "media/renderers/default_renderer_factory.h" |
187 #endif | 187 #endif |
188 | 188 |
189 #if defined(ENABLE_WEBVR) | |
190 #include "content/renderer/vr/vr_dispatcher.h" | |
191 #endif | |
192 | |
193 using blink::WebContextMenuData; | 189 using blink::WebContextMenuData; |
194 using blink::WebData; | 190 using blink::WebData; |
195 using blink::WebDataSource; | 191 using blink::WebDataSource; |
196 using blink::WebDocument; | 192 using blink::WebDocument; |
197 using blink::WebDOMEvent; | 193 using blink::WebDOMEvent; |
198 using blink::WebDOMMessageEvent; | 194 using blink::WebDOMMessageEvent; |
199 using blink::WebElement; | 195 using blink::WebElement; |
200 using blink::WebExternalPopupMenu; | 196 using blink::WebExternalPopupMenu; |
201 using blink::WebExternalPopupMenuClient; | 197 using blink::WebExternalPopupMenuClient; |
202 using blink::WebFrame; | 198 using blink::WebFrame; |
(...skipping 3532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3735 | 3731 |
3736 blink::WebAppBannerClient* RenderFrameImpl::appBannerClient() { | 3732 blink::WebAppBannerClient* RenderFrameImpl::appBannerClient() { |
3737 if (!app_banner_client_) { | 3733 if (!app_banner_client_) { |
3738 app_banner_client_ = | 3734 app_banner_client_ = |
3739 GetContentClient()->renderer()->CreateAppBannerClient(this); | 3735 GetContentClient()->renderer()->CreateAppBannerClient(this); |
3740 } | 3736 } |
3741 | 3737 |
3742 return app_banner_client_.get(); | 3738 return app_banner_client_.get(); |
3743 } | 3739 } |
3744 | 3740 |
3745 #if defined(ENABLE_WEBVR) | |
3746 blink::WebVRClient* RenderFrameImpl::webVRClient() { | |
3747 if (!vr_dispatcher_) | |
3748 vr_dispatcher_.reset(new VRDispatcher(GetServiceRegistry())); | |
3749 | |
3750 return vr_dispatcher_.get(); | |
3751 } | |
3752 #endif | |
3753 | |
3754 void RenderFrameImpl::DidPlay(blink::WebMediaPlayer* player) { | 3741 void RenderFrameImpl::DidPlay(blink::WebMediaPlayer* player) { |
3755 Send(new FrameHostMsg_MediaPlayingNotification( | 3742 Send(new FrameHostMsg_MediaPlayingNotification( |
3756 routing_id_, reinterpret_cast<int64>(player), player->hasVideo(), | 3743 routing_id_, reinterpret_cast<int64>(player), player->hasVideo(), |
3757 player->hasAudio(), player->isRemote())); | 3744 player->hasAudio(), player->isRemote())); |
3758 } | 3745 } |
3759 | 3746 |
3760 void RenderFrameImpl::DidPause(blink::WebMediaPlayer* player) { | 3747 void RenderFrameImpl::DidPause(blink::WebMediaPlayer* player) { |
3761 Send(new FrameHostMsg_MediaPausedNotification( | 3748 Send(new FrameHostMsg_MediaPausedNotification( |
3762 routing_id_, reinterpret_cast<int64>(player))); | 3749 routing_id_, reinterpret_cast<int64>(player))); |
3763 } | 3750 } |
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4922 #elif defined(ENABLE_BROWSER_CDMS) | 4909 #elif defined(ENABLE_BROWSER_CDMS) |
4923 cdm_manager_, | 4910 cdm_manager_, |
4924 #endif | 4911 #endif |
4925 this); | 4912 this); |
4926 } | 4913 } |
4927 | 4914 |
4928 return cdm_factory_; | 4915 return cdm_factory_; |
4929 } | 4916 } |
4930 | 4917 |
4931 } // namespace content | 4918 } // namespace content |
OLD | NEW |