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

Unified Diff: chrome/renderer/media/data_source_impl.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/renderer/media/buffered_data_source.cc ('k') | chrome/renderer/media/simple_data_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/data_source_impl.cc
===================================================================
--- chrome/renderer/media/data_source_impl.cc (revision 15413)
+++ chrome/renderer/media/data_source_impl.cc (working copy)
@@ -237,7 +237,10 @@
// app_cache_context()->context_id()
// For now don't service media resource requests from the appcache.
WebAppCacheContext::kNoAppCacheContextId,
- delegate_->view()->routing_id()));
+ delegate_->view()->routing_id(),
+ // TODO(jungshik): It might be useful in some cases
+ // (e.g. interpreting ID3v1 tags in mp3), but for now leave it empty
+ ""));
// Start the resource loading.
resource_loader_bridge_->Start(this);
}
« no previous file with comments | « chrome/renderer/media/buffered_data_source.cc ('k') | chrome/renderer/media/simple_data_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698