OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef MEDIA_CDM_PLAYER_TRACKER_IMPL_H_ |
| 6 #define MEDIA_CDM_PLAYER_TRACKER_IMPL_H_ |
| 7 |
| 8 #include <map> |
| 9 |
| 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" |
| 12 #include "media/base/media_export.h" |
| 13 #include "media/base/player_tracker.h" |
| 14 |
| 15 namespace media { |
| 16 |
| 17 // A common implementation that can be shared by different PlayerTracker |
| 18 // implementations. This class is not thread safe and should only be called |
| 19 // on one thread. |
| 20 class MEDIA_EXPORT PlayerTrackerImpl : public PlayerTracker { |
| 21 public: |
| 22 PlayerTrackerImpl(); |
| 23 virtual ~PlayerTrackerImpl(); |
| 24 |
| 25 // PlayerTracker implementation. |
| 26 virtual int RegisterPlayer(const base::Closure& new_key_cb, |
| 27 const base::Closure& cdm_destroyed_cb) OVERRIDE; |
| 28 virtual void UnregisterPlayer(int registration_id) OVERRIDE; |
| 29 |
| 30 // Helpers methods to fire registered callbacks. |
| 31 void NotifyNewKey(); |
| 32 void NotifyCdmDestroyed(); |
| 33 |
| 34 private: |
| 35 struct PlayerCallbacks { |
| 36 PlayerCallbacks(base::Closure new_key_cb, base::Closure cdm_destroyed_cb); |
| 37 ~PlayerCallbacks(); |
| 38 |
| 39 base::Closure new_key_cb; |
| 40 base::Closure cdm_destroyed_cb; |
| 41 }; |
| 42 |
| 43 int next_registration_id_; |
| 44 std::map<int, PlayerCallbacks> player_callbacks_map_; |
| 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(PlayerTrackerImpl); |
| 47 }; |
| 48 |
| 49 } // namespace media |
| 50 |
| 51 #endif // MEDIA_CDM_PLAYER_TRACKER_IMPL_H_ |
OLD | NEW |