blob: 40aaf9c7e10d29d40acbc73798f67f6c16030b4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright 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/shareable_blob_data_item.h"
#include "storage/browser/blob/blob_data_item.h"
namespace storage {
ShareableBlobDataItem::ShareableBlobDataItem(
const std::string& blob_uuid,
const scoped_refptr<BlobDataItem>& item)
: item_(item) {
DCHECK_NE(item_->type(), DataElement::TYPE_BLOB);
referencing_blobs_.insert(blob_uuid);
}
ShareableBlobDataItem::~ShareableBlobDataItem() {
}
const scoped_refptr<BlobDataItem>& ShareableBlobDataItem::item() {
return item_;
}
} // namespace storage
|