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

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

Issue 28058: Fix the build due to r10237 (Closed)
Patch Set: Created 11 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/data_source_impl.cc
diff --git a/chrome/renderer/media/data_source_impl.cc b/chrome/renderer/media/data_source_impl.cc
index e5769ae93b753a37c20e8a0b4ed85f20f2b6ff50..24d3995d5d5b78bc75e74e47fddeece6337145ba 100644
--- a/chrome/renderer/media/data_source_impl.cc
+++ b/chrome/renderer/media/data_source_impl.cc
@@ -18,7 +18,8 @@ DataSourceImpl::DataSourceImpl(WebMediaPlayerDelegateImpl* delegate)
total_bytes_(0),
total_bytes_known_(false),
read_event_(false, false),
- read_callback_(this, &DataSourceImpl::OnDidFileStreamRead),
+ ALLOW_THIS_IN_INITIALIZER_LIST(
+ read_callback_(this, &DataSourceImpl::OnDidFileStreamRead)),
stream_(NULL),
last_read_size_(0),
position_(0),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698