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

Side by Side Diff: media/base/media_url_params.h

Issue 2434413002: Plumb firstPartyForCookies() to MediaPlayerBridge (Closed)
Patch Set: Added bug number to TODO Created 4 years, 2 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/media_url_demuxer_unittest.cc ('k') | media/base/pipeline_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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_BASE_MEDIA_URL_PARAMS_H_
6 #define MEDIA_BASE_MEDIA_URL_PARAMS_H_
7
8 #include "url/gurl.h"
9
10 namespace media {
11
12 // Encapsulates the necessary information in order to play media in URL based
13 // playback (as opposed to stream based).
14 // See MediaUrlDemuxer and MediaPlayerRenderer.
15 struct MEDIA_EXPORT MediaUrlParams {
16 // URL of the media to be played.
17 GURL media_url;
18
19 // Used to play media in authenticated scenarios.
20 GURL first_party_for_cookies;
xhwang 2016/10/21 00:02:19 Could you please add some more comments about this
tguilbert 2016/10/21 03:05:58 I was hesitant to add detailed comments, because I
21 };
22
23 } // namespace media
24
25 #endif // MEDIA_BASE_MEDIA_URL_PARAMS_H_
OLDNEW
« no previous file with comments | « media/base/media_url_demuxer_unittest.cc ('k') | media/base/pipeline_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698