| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "media/base/android/media_drm_storage.h" | 5 #include "media/base/android/media_drm_storage.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 namespace media { | 9 namespace media { |
| 10 | 10 |
| 11 MediaDrmStorage::SessionData::SessionData(std::vector<uint8_t> key_set_id, | 11 MediaDrmStorage::SessionData::SessionData(std::vector<uint8_t> key_set_id, |
| 12 std::string mime_type) | 12 std::string mime_type) |
| 13 : key_set_id(std::move(key_set_id)), mime_type(std::move(mime_type)) {} | 13 : key_set_id(std::move(key_set_id)), mime_type(std::move(mime_type)) {} |
| 14 | 14 |
| 15 MediaDrmStorage::SessionData::SessionData(const SessionData& other) = default; |
| 16 |
| 15 MediaDrmStorage::SessionData::~SessionData() {} | 17 MediaDrmStorage::SessionData::~SessionData() {} |
| 16 | 18 |
| 17 MediaDrmStorage::MediaDrmStorage() {} | 19 MediaDrmStorage::MediaDrmStorage() {} |
| 18 | 20 |
| 19 MediaDrmStorage::~MediaDrmStorage() {} | 21 MediaDrmStorage::~MediaDrmStorage() {} |
| 20 | 22 |
| 21 } // namespace media | 23 } // namespace media |
| OLD | NEW |