diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-07 16:10:47 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-07 16:10:47 +0000 |
commit | 9ec0f9c97357dd5b4dd9deae252f8d3633ad38a9 (patch) | |
tree | 061c0b2fb922a0e0f710d8399c6f45cbd5f2e8df /media/base/decryptor.h | |
parent | 93a99125d4826e560c9a51603279eae9a7390694 (diff) | |
download | chromium_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/decryptor.h')
-rw-r--r-- | media/base/decryptor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/decryptor.h b/media/base/decryptor.h index 6f76627..4e512a5 100644 --- a/media/base/decryptor.h +++ b/media/base/decryptor.h @@ -235,7 +235,7 @@ typedef base::Callback<void(const std::string& key_system, typedef base::Callback<void(const std::string& key_system, const std::string& session_id, const std::string& type, - scoped_array<uint8> init_data, + scoped_ptr<uint8[]> init_data, int init_data_size)> NeedKeyCB; } // namespace media |