| OLD | NEW | 
| (Empty) |  | 
 |   1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 
 |   2 // Use of this source code is governed by a BSD-style license that can be | 
 |   3 // found in the LICENSE file. | 
 |   4  | 
 |   5 #include "storage/browser/blob/blob_data_item.h" | 
 |   6  | 
 |   7 namespace storage { | 
 |   8  | 
 |   9 BlobDataItem::BlobDataItem(scoped_ptr<DataElement> item, | 
 |  10                            scoped_refptr<ShareableFileReference> file_handle) | 
 |  11     : item_(item.Pass()), file_handle_(file_handle) { | 
 |  12 } | 
 |  13 BlobDataItem::BlobDataItem(scoped_ptr<DataElement> item) : item_(item.Pass()) { | 
 |  14 } | 
 |  15 BlobDataItem::~BlobDataItem() { | 
 |  16 } | 
 |  17  | 
 |  18 }  // namespace storage | 
| OLD | NEW |