summaryrefslogtreecommitdiffstats
path: root/media/base/byte_queue.h
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-07 16:10:47 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-07 16:10:47 +0000
commit9ec0f9c97357dd5b4dd9deae252f8d3633ad38a9 (patch)
tree061c0b2fb922a0e0f710d8399c6f45cbd5f2e8df /media/base/byte_queue.h
parent93a99125d4826e560c9a51603279eae9a7390694 (diff)
downloadchromium_src-9ec0f9c97357dd5b4dd9deae252f8d3633ad38a9.zip
chromium_src-9ec0f9c97357dd5b4dd9deae252f8d3633ad38a9.tar.gz
chromium_src-9ec0f9c97357dd5b4dd9deae252f8d3633ad38a9.tar.bz2
Rewrite scoped_array<T> to scoped_ptr<T[]> in media/ and webkit/.
This changelist was automatically generated using a clang tool. BUG=171111 Review URL: https://codereview.chromium.org/13752002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192779 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/byte_queue.h')
-rw-r--r--media/base/byte_queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/byte_queue.h b/media/base/byte_queue.h
index 7619472..f25328d 100644
--- a/media/base/byte_queue.h
+++ b/media/base/byte_queue.h
@@ -39,7 +39,7 @@ class MEDIA_EXPORT ByteQueue {
// Returns a pointer to the front of the queue.
uint8* front() const;
- scoped_array<uint8> buffer_;
+ scoped_ptr<uint8[]> buffer_;
// Size of |buffer_|.
size_t size_;