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

Side by Side Diff: media/base/cdm_key_information.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/base/bitstream_buffer.cc ('k') | media/base/cdm_key_information.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_BASE_CDM_KEY_INFORMATION_H_ 5 #ifndef MEDIA_BASE_CDM_KEY_INFORMATION_H_
6 #define MEDIA_BASE_CDM_KEY_INFORMATION_H_ 6 #define MEDIA_BASE_CDM_KEY_INFORMATION_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 22 matching lines...) Expand all
33 CdmKeyInformation(const std::vector<uint8_t>& key_id, 33 CdmKeyInformation(const std::vector<uint8_t>& key_id,
34 KeyStatus status, 34 KeyStatus status,
35 uint32_t system_code); 35 uint32_t system_code);
36 CdmKeyInformation(const std::string& key_id, 36 CdmKeyInformation(const std::string& key_id,
37 KeyStatus status, 37 KeyStatus status,
38 uint32_t system_code); 38 uint32_t system_code);
39 CdmKeyInformation(const uint8_t* key_id_data, 39 CdmKeyInformation(const uint8_t* key_id_data,
40 size_t key_id_length, 40 size_t key_id_length,
41 KeyStatus status, 41 KeyStatus status,
42 uint32_t system_code); 42 uint32_t system_code);
43 CdmKeyInformation(const CdmKeyInformation& other);
43 ~CdmKeyInformation(); 44 ~CdmKeyInformation();
44 45
45 std::vector<uint8_t> key_id; 46 std::vector<uint8_t> key_id;
46 KeyStatus status; 47 KeyStatus status;
47 uint32_t system_code; 48 uint32_t system_code;
48 }; 49 };
49 50
50 } // namespace media 51 } // namespace media
51 52
52 #endif // MEDIA_BASE_CDM_KEY_INFORMATION_H_ 53 #endif // MEDIA_BASE_CDM_KEY_INFORMATION_H_
OLDNEW
« no previous file with comments | « media/base/bitstream_buffer.cc ('k') | media/base/cdm_key_information.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698