summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-24 01:42:33 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-24 01:42:33 +0000
commit6de7083aadd26424c55d1433a005eb630a28d384 (patch)
tree1f0249abbe5a72f2b0cbf998c29619791ab35591 /chrome
parent6ff17cf0232de8a8b1dbd3e10762260c2f7f066e (diff)
downloadchromium_src-6de7083aadd26424c55d1433a005eb630a28d384.zip
chromium_src-6de7083aadd26424c55d1433a005eb630a28d384.tar.gz
chromium_src-6de7083aadd26424c55d1433a005eb630a28d384.tar.bz2
Fix the build due to r10237
TBR=? Review URL: http://codereview.chromium.org/28058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10242 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/renderer/media/data_source_impl.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/renderer/media/data_source_impl.cc b/chrome/renderer/media/data_source_impl.cc
index e5769ae..24d3995 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),