diff options
Diffstat (limited to 'webkit/blob/deletable_file_reference.cc')
-rw-r--r-- | webkit/blob/deletable_file_reference.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/blob/deletable_file_reference.cc b/webkit/blob/deletable_file_reference.cc index 9f49943..87ef4cc 100644 --- a/webkit/blob/deletable_file_reference.cc +++ b/webkit/blob/deletable_file_reference.cc @@ -42,8 +42,8 @@ scoped_refptr<DeletableFileReference> DeletableFileReference::GetOrCreate( return scoped_refptr<DeletableFileReference>(result.first->second); // Wasn't in the map, create a new reference and store the pointer. - scoped_refptr<DeletableFileReference> reference = - new DeletableFileReference(path, file_thread); + scoped_refptr<DeletableFileReference> reference( + new DeletableFileReference(path, file_thread)); result.first->second = reference.get(); return reference; } |