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

Unified Diff: chrome/renderer/media/buffered_data_source.cc

Issue 113069: Content-Dispositon handling fix #2. Still WiP. Uploading as a check point.... Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/plugin/chrome_plugin_host.cc ('k') | chrome/renderer/media/data_source_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/buffered_data_source.cc
===================================================================
--- chrome/renderer/media/buffered_data_source.cc (revision 15413)
+++ chrome/renderer/media/buffered_data_source.cc (working copy)
@@ -109,7 +109,10 @@
// app_cache_context()->context_id()
// For now don't service media resource requests from the appcache.
WebAppCacheContext::kNoAppCacheContextId,
- route_id_));
+ route_id_,
+ // TODO(jungshik): It might be useful in some cases
+ // (e.g. interpreting ID3v1 tags in mp3), but for now leave it empty.
+ ""));
// We may receive stop signal while we are inside this method, it's because
// Start() may get called on demuxer thread while Stop() is called on
« no previous file with comments | « chrome/plugin/chrome_plugin_host.cc ('k') | chrome/renderer/media/data_source_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698