chromium/media/base/cdm_key_information.h

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_BASE_CDM_KEY_INFORMATION_H_
#define MEDIA_BASE_CDM_KEY_INFORMATION_H_

#include <stddef.h>
#include <stdint.h>

#include <string>
#include <vector>

#include "media/base/media_export.h"

namespace media {

struct MEDIA_EXPORT CdmKeyInformation {};

// The following are for logging use only.

MEDIA_EXPORT std::ostream& operator<<(std::ostream& os,
                                      CdmKeyInformation::KeyStatus status);

MEDIA_EXPORT std::ostream& operator<<(std::ostream& os,
                                      const CdmKeyInformation& info);

}  // namespace media

#endif  // MEDIA_BASE_CDM_KEY_INFORMATION_H_