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

Unified Diff: webkit/media/buffered_data_source.cc

Issue 10538083: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « media/audio/async_socket_io_handler_posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/buffered_data_source.cc
diff --git a/webkit/media/buffered_data_source.cc b/webkit/media/buffered_data_source.cc
index 3193a1ca523cda4600e65376f7687368b4bf1808..63245b4a393d661548a111c898a639468978d81f 100644
--- a/webkit/media/buffered_data_source.cc
+++ b/webkit/media/buffered_data_source.cc
@@ -26,7 +26,8 @@ BufferedDataSource::BufferedDataSource(
MessageLoop* render_loop,
WebFrame* frame,
media::MediaLog* media_log)
- : total_bytes_(kPositionNotSpecified),
+ : cors_mode_(BufferedResourceLoader::kUnspecified),
+ total_bytes_(kPositionNotSpecified),
buffered_bytes_(0),
streaming_(false),
frame_(frame),
« no previous file with comments | « media/audio/async_socket_io_handler_posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698