// Copyright 2016 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_MEDIA_URL_PARAMS_H_ #define MEDIA_BASE_MEDIA_URL_PARAMS_H_ #include "base/containers/flat_map.h" #include "media/base/media_export.h" #include "net/cookies/site_for_cookies.h" #include "net/storage_access_api/status.h" #include "url/gurl.h" #include "url/origin.h" namespace media { // Encapsulates the necessary information in order to play media in URL based // playback (as opposed to stream based). // See MediaUrlDemuxer and MediaPlayerRenderer. struct MEDIA_EXPORT MediaUrlParams { … }; } // namespace media #endif // MEDIA_BASE_MEDIA_URL_PARAMS_H_