| 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 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 2839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2850 #endif | 2850 #endif |
| 2851 | 2851 |
| 2852 if (!url_index_.get() || url_index_->frame() != frame_) | 2852 if (!url_index_.get() || url_index_->frame() != frame_) |
| 2853 url_index_.reset(new media::UrlIndex(frame_)); | 2853 url_index_.reset(new media::UrlIndex(frame_)); |
| 2854 | 2854 |
| 2855 media::WebMediaPlayerImpl* media_player = new media::WebMediaPlayerImpl( | 2855 media::WebMediaPlayerImpl* media_player = new media::WebMediaPlayerImpl( |
| 2856 frame_, client, encrypted_client, | 2856 frame_, client, encrypted_client, |
| 2857 GetWebMediaPlayerDelegate()->AsWeakPtr(), | 2857 GetWebMediaPlayerDelegate()->AsWeakPtr(), |
| 2858 std::move(media_renderer_factory), url_index_, params); | 2858 std::move(media_renderer_factory), url_index_, params); |
| 2859 | 2859 |
| 2860 // TODO(http://crbug.com/673886): Re-enable overlays with VR shell enabled |
| 2861 // when VR shell's video reprojection surface is enabled. Remove the setter |
| 2862 // and put the overlay feature check back in the constructor at that time. |
| 2863 media_player->SetEnableFullscreenOverlays( |
| 2864 base::FeatureList::IsEnabled(media::kOverlayFullscreenVideo) && |
| 2865 !base::FeatureList::IsEnabled(features::kVrShell)); |
| 2866 |
| 2860 #if defined(OS_ANDROID) // WMPI_CAST | 2867 #if defined(OS_ANDROID) // WMPI_CAST |
| 2861 media_player->SetMediaPlayerManager(GetMediaPlayerManager()); | 2868 media_player->SetMediaPlayerManager(GetMediaPlayerManager()); |
| 2862 media_player->SetDeviceScaleFactor(render_view_->GetDeviceScaleFactor()); | 2869 media_player->SetDeviceScaleFactor(render_view_->GetDeviceScaleFactor()); |
| 2863 media_player->SetUseFallbackPath(use_fallback_path); | 2870 media_player->SetUseFallbackPath(use_fallback_path); |
| 2864 #endif // defined(OS_ANDROID) | 2871 #endif // defined(OS_ANDROID) |
| 2865 | 2872 |
| 2866 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) | 2873 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 2867 remoting_controller_ptr->SetSwitchRendererCallback(base::Bind( | 2874 remoting_controller_ptr->SetSwitchRendererCallback(base::Bind( |
| 2868 &media::WebMediaPlayerImpl::ScheduleRestart, media_player->AsWeakPtr())); | 2875 &media::WebMediaPlayerImpl::ScheduleRestart, media_player->AsWeakPtr())); |
| 2869 remoting_controller_ptr->SetRemoteSinkAvailableChangedCallback(base::Bind( | 2876 remoting_controller_ptr->SetRemoteSinkAvailableChangedCallback(base::Bind( |
| (...skipping 3809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6679 // event target. Potentially a Pepper plugin will receive the event. | 6686 // event target. Potentially a Pepper plugin will receive the event. |
| 6680 // In order to tell whether a plugin gets the last mouse event and which it | 6687 // In order to tell whether a plugin gets the last mouse event and which it |
| 6681 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets | 6688 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets |
| 6682 // the event, it will notify us via DidReceiveMouseEvent() and set itself as | 6689 // the event, it will notify us via DidReceiveMouseEvent() and set itself as |
| 6683 // |pepper_last_mouse_event_target_|. | 6690 // |pepper_last_mouse_event_target_|. |
| 6684 pepper_last_mouse_event_target_ = nullptr; | 6691 pepper_last_mouse_event_target_ = nullptr; |
| 6685 #endif | 6692 #endif |
| 6686 } | 6693 } |
| 6687 | 6694 |
| 6688 } // namespace content | 6695 } // namespace content |
| OLD | NEW |