1 // Copyright 2014 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.
5 #include "content/browser/indexed_db/indexed_db_blob_info.h"
8 #include "base/logging.h"
9 #include "content/browser/indexed_db/indexed_db_leveldb_coding.h"
13 IndexedDBBlobInfo::IndexedDBBlobInfo()
14 : is_file_(false), size_(-1), key_(DatabaseMetaDataKey::kInvalidBlobKey
) {
17 IndexedDBBlobInfo::IndexedDBBlobInfo(const std::string
& uuid
,
18 const base::string16
& type
,
24 key_(DatabaseMetaDataKey::kInvalidBlobKey
) {
27 IndexedDBBlobInfo::IndexedDBBlobInfo(const base::string16
& type
,
30 : is_file_(false), type_(type
), size_(size
), key_(key
) {
33 IndexedDBBlobInfo::IndexedDBBlobInfo(const std::string
& uuid
,
34 const base::FilePath
& file_path
,
35 const base::string16
& file_name
,
36 const base::string16
& type
)
41 file_name_(file_name
),
42 file_path_(file_path
),
43 key_(DatabaseMetaDataKey::kInvalidBlobKey
) {
46 IndexedDBBlobInfo::IndexedDBBlobInfo(int64 key
,
47 const base::string16
& type
,
48 const base::string16
& file_name
)
49 : is_file_(true), type_(type
), size_(-1), file_name_(file_name
), key_(key
) {
52 IndexedDBBlobInfo::~IndexedDBBlobInfo() {}
54 void IndexedDBBlobInfo::set_size(int64 size
) {
59 void IndexedDBBlobInfo::set_uuid(const std::string
& uuid
) {
60 DCHECK(uuid_
.empty());
62 DCHECK(!uuid_
.empty());
65 void IndexedDBBlobInfo::set_file_path(const base::FilePath
& file_path
) {
66 DCHECK(file_path_
.empty());
67 file_path_
= file_path
;
70 void IndexedDBBlobInfo::set_last_modified(const base::Time
& time
) {
71 DCHECK(base::Time().is_null());
73 last_modified_
= time
;
76 void IndexedDBBlobInfo::set_key(int64 key
) {
77 DCHECK_EQ(DatabaseMetaDataKey::kInvalidBlobKey
, key_
);
81 void IndexedDBBlobInfo::set_mark_used_callback(
82 const base::Closure
& mark_used_callback
) {
83 DCHECK(mark_used_callback_
.is_null());
84 mark_used_callback_
= mark_used_callback
;
87 void IndexedDBBlobInfo::set_release_callback(
88 const ReleaseCallback
& release_callback
) {
89 DCHECK(release_callback_
.is_null());
90 release_callback_
= release_callback
;
93 } // namespace content