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

Side by Side Diff: media/cdm/player_tracker_impl.h

Issue 1731403002: media: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « media/cast/net/rtcp/rtcp_defines.cc ('k') | media/cdm/player_tracker_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 MEDIA_CDM_PLAYER_TRACKER_IMPL_H_ 5 #ifndef MEDIA_CDM_PLAYER_TRACKER_IMPL_H_
6 #define MEDIA_CDM_PLAYER_TRACKER_IMPL_H_ 6 #define MEDIA_CDM_PLAYER_TRACKER_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 17 matching lines...) Expand all
28 void UnregisterPlayer(int registration_id) override; 28 void UnregisterPlayer(int registration_id) override;
29 29
30 // Helpers methods to fire registered callbacks. 30 // Helpers methods to fire registered callbacks.
31 void NotifyNewKey(); 31 void NotifyNewKey();
32 void NotifyCdmUnset(); 32 void NotifyCdmUnset();
33 33
34 private: 34 private:
35 struct PlayerCallbacks { 35 struct PlayerCallbacks {
36 PlayerCallbacks(const base::Closure& new_key_cb, 36 PlayerCallbacks(const base::Closure& new_key_cb,
37 const base::Closure& cdm_unset_cb); 37 const base::Closure& cdm_unset_cb);
38 PlayerCallbacks(const PlayerCallbacks& other);
38 ~PlayerCallbacks(); 39 ~PlayerCallbacks();
39 40
40 base::Closure new_key_cb; 41 base::Closure new_key_cb;
41 base::Closure cdm_unset_cb; 42 base::Closure cdm_unset_cb;
42 }; 43 };
43 44
44 // Lock used to serialize access to other data members. 45 // Lock used to serialize access to other data members.
45 base::Lock lock_; 46 base::Lock lock_;
46 47
47 int next_registration_id_; 48 int next_registration_id_;
48 std::map<int, PlayerCallbacks> player_callbacks_map_; 49 std::map<int, PlayerCallbacks> player_callbacks_map_;
49 50
50 DISALLOW_COPY_AND_ASSIGN(PlayerTrackerImpl); 51 DISALLOW_COPY_AND_ASSIGN(PlayerTrackerImpl);
51 }; 52 };
52 53
53 } // namespace media 54 } // namespace media
54 55
55 #endif // MEDIA_CDM_PLAYER_TRACKER_IMPL_H_ 56 #endif // MEDIA_CDM_PLAYER_TRACKER_IMPL_H_
OLDNEW
« no previous file with comments | « media/cast/net/rtcp/rtcp_defines.cc ('k') | media/cdm/player_tracker_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698