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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// Copyright 2014 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 "content/browser/indexed_db/indexed_db_blob_info.h"
#include "base/bind.h"
#include "base/logging.h"
#include "content/browser/indexed_db/indexed_db_leveldb_coding.h"
namespace content {
IndexedDBBlobInfo::IndexedDBBlobInfo()
: is_file_(false), size_(-1), key_(DatabaseMetaDataKey::kInvalidBlobKey) {
}
IndexedDBBlobInfo::IndexedDBBlobInfo(const std::string& uuid,
const base::string16& type,
int64 size)
: is_file_(false),
uuid_(uuid),
type_(type),
size_(size),
key_(DatabaseMetaDataKey::kInvalidBlobKey) {
}
IndexedDBBlobInfo::IndexedDBBlobInfo(const base::string16& type,
int64 size,
int64 key)
: is_file_(false), type_(type), size_(size), key_(key) {
}
IndexedDBBlobInfo::IndexedDBBlobInfo(const std::string& uuid,
const base::FilePath& file_path,
const base::string16& file_name,
const base::string16& type)
: is_file_(true),
uuid_(uuid),
type_(type),
size_(-1),
file_name_(file_name),
file_path_(file_path),
key_(DatabaseMetaDataKey::kInvalidBlobKey) {
}
IndexedDBBlobInfo::IndexedDBBlobInfo(int64 key,
const base::string16& type,
const base::string16& file_name)
: is_file_(true), type_(type), size_(-1), file_name_(file_name), key_(key) {
}
IndexedDBBlobInfo::IndexedDBBlobInfo(const IndexedDBBlobInfo& other) = default;
IndexedDBBlobInfo::~IndexedDBBlobInfo() = default;
IndexedDBBlobInfo& IndexedDBBlobInfo::operator=(
const IndexedDBBlobInfo& other) = default;
void IndexedDBBlobInfo::set_size(int64 size) {
DCHECK_EQ(-1, size_);
size_ = size;
}
void IndexedDBBlobInfo::set_uuid(const std::string& uuid) {
DCHECK(uuid_.empty());
uuid_ = uuid;
DCHECK(!uuid_.empty());
}
void IndexedDBBlobInfo::set_file_path(const base::FilePath& file_path) {
DCHECK(file_path_.empty());
file_path_ = file_path;
}
void IndexedDBBlobInfo::set_last_modified(const base::Time& time) {
DCHECK(base::Time().is_null());
DCHECK(is_file_);
last_modified_ = time;
}
void IndexedDBBlobInfo::set_key(int64 key) {
DCHECK_EQ(DatabaseMetaDataKey::kInvalidBlobKey, key_);
key_ = key;
}
void IndexedDBBlobInfo::set_mark_used_callback(
const base::Closure& mark_used_callback) {
DCHECK(mark_used_callback_.is_null());
mark_used_callback_ = mark_used_callback;
}
void IndexedDBBlobInfo::set_release_callback(
const ReleaseCallback& release_callback) {
DCHECK(release_callback_.is_null());
release_callback_ = release_callback;
}
} // namespace content
|