diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 18:20:14 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 18:20:14 +0000 |
commit | dc4e78acfa4989da822482e8789ae6f5824cc995 (patch) | |
tree | c88a2b3efe3439936dcf4197400c995f854ad41e /net/disk_cache/entry_impl.h | |
parent | 377a1110d0ab5a9866bbfd3501bbe1fab82909cf (diff) | |
download | chromium_src-dc4e78acfa4989da822482e8789ae6f5824cc995.zip chromium_src-dc4e78acfa4989da822482e8789ae6f5824cc995.tar.gz chromium_src-dc4e78acfa4989da822482e8789ae6f5824cc995.tar.bz2 |
Replace scoped_ptr with scoped_array.
BUG=1291138
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/entry_impl.h')
-rw-r--r-- | net/disk_cache/entry_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/entry_impl.h b/net/disk_cache/entry_impl.h index 8000f37..c3e2eed 100644 --- a/net/disk_cache/entry_impl.h +++ b/net/disk_cache/entry_impl.h @@ -155,7 +155,7 @@ class EntryImpl : public Entry, public base::RefCounted<EntryImpl> { CacheEntryBlock entry_; // Key related information for this entry. CacheRankingsBlock node_; // Rankings related information for this entry. BackendImpl* backend_; // Back pointer to the cache. - scoped_ptr<char> user_buffers_[2]; // Store user data. + scoped_array<char> user_buffers_[2]; // Store user data. scoped_refptr<File> files_[3]; // Files to store external user data and key. int unreported_size_[2]; // Bytes not reported yet to the backend. bool doomed_; // True if this entry was removed from the cache. |