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