| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_BROWSER_MEDIA_SESSION_PEPPER_PLAYER_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYER_DELEGATE_H_ |
| 6 #define CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYER_DELEGATE_H_ | 6 #define CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "content/browser/media/session/media_session_player_observer.h" | 9 #include "content/browser/media/session/media_session_player_observer.h" |
| 10 #include "content/browser/web_contents/web_contents_impl.h" | 10 #include "content/browser/web_contents/web_contents_impl.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 class PepperPlayerDelegate : public MediaSessionPlayerObserver { | 14 class PepperPlayerDelegate : public MediaSessionPlayerObserver { |
| 15 public: | 15 public: |
| 16 // The Id can only be 0 for PepperPlayerDelegate. Declare the constant here so | 16 // The Id can only be 0 for PepperPlayerDelegate. Declare the constant here so |
| 17 // it can be used elsewhere. | 17 // it can be used elsewhere. |
| 18 static const int kPlayerId; | 18 static const int kPlayerId; |
| 19 | 19 |
| 20 PepperPlayerDelegate( | 20 PepperPlayerDelegate( |
| 21 WebContentsImpl* contents, int32_t pp_instance); | 21 WebContentsImpl* contents, int32_t pp_instance); |
| 22 ~PepperPlayerDelegate() override; | 22 ~PepperPlayerDelegate() override; |
| 23 | 23 |
| 24 // MediaSessionPlayerObserver implementation. | 24 // MediaSessionPlayerObserver implementation. |
| 25 void OnSuspend(int player_id) override; | 25 void OnSuspend(int player_id) override; |
| 26 void OnResume(int player_id) override; | 26 void OnResume(int player_id) override; |
| 27 void OnSetVolumeMultiplier(int player_id, | 27 void OnSetVolumeMultiplier(int player_id, |
| 28 double volume_multiplier) override; | 28 double volume_multiplier) override; |
| 29 RenderFrameHost* GetRenderFrameHost() const override; |
| 29 | 30 |
| 30 private: | 31 private: |
| 31 void SetVolume(int player_id, double volume); | 32 void SetVolume(int player_id, double volume); |
| 32 | 33 |
| 33 WebContentsImpl* contents_; | 34 WebContentsImpl* contents_; |
| 34 int32_t pp_instance_; | 35 int32_t pp_instance_; |
| 35 | 36 |
| 36 DISALLOW_COPY_AND_ASSIGN(PepperPlayerDelegate); | 37 DISALLOW_COPY_AND_ASSIGN(PepperPlayerDelegate); |
| 37 }; | 38 }; |
| 38 | 39 |
| 39 } // namespace content | 40 } // namespace content |
| 40 | 41 |
| 41 #endif // CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYER_DELEGATE_H_ | 42 #endif // CONTENT_BROWSER_MEDIA_SESSION_PEPPER_PLAYER_DELEGATE_H_ |
| OLD | NEW |