summaryrefslogtreecommitdiffstats
path: root/media/base/byte_queue.h
diff options
context:
space:
mode:
authoracolwell@chromium.org <acolwell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-26 16:38:03 +0000
committeracolwell@chromium.org <acolwell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-26 16:38:03 +0000
commita93866519172cc8993583d9116ce16eec01d532b (patch)
treee617d768783948cabd3e0363cfa6bfe45a6b4ee0 /media/base/byte_queue.h
parent2b2d9393845b8bb60f843d14ab0b59c4bc3949db (diff)
downloadchromium_src-a93866519172cc8993583d9116ce16eec01d532b.zip
chromium_src-a93866519172cc8993583d9116ce16eec01d532b.tar.gz
chromium_src-a93866519172cc8993583d9116ce16eec01d532b.tar.bz2
Add config change handling to SourceBufferStream & ChunkDemuxer
BUG=122913 TEST=None Review URL: https://chromiumcodereview.appspot.com/10696182 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/byte_queue.h')
-rw-r--r--media/base/byte_queue.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/media/base/byte_queue.h b/media/base/byte_queue.h
index d3ef605..7619472 100644
--- a/media/base/byte_queue.h
+++ b/media/base/byte_queue.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -7,6 +7,7 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
+#include "media/base/media_export.h"
namespace media {
@@ -15,7 +16,7 @@ namespace media {
// Pop(). The contents of the queue can be observed via the Peek() method.
// This class manages the underlying storage of the queue and tries to minimize
// the number of buffer copies when data is appended and removed.
-class ByteQueue {
+class MEDIA_EXPORT ByteQueue {
public:
ByteQueue();
~ByteQueue();