Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(636)

Side by Side Diff: content/browser/indexed_db/indexed_db_value.h

Issue 18023022: Blob support for IDB [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use ScopedVector and stl_utils for BlobDataHandles. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Use of this source code is governed by a BSD-style license that can be
2 // found in the LICENSE file.
3
4 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
5 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
6
7 #include <vector>
8 #include "content/browser/indexed_db/indexed_db_blob_info.h"
9
10 namespace content {
11
12 struct IndexedDBValue {
jsbell 2013/12/18 23:04:40 This seems worth trying to split out and land earl
ericu 2013/12/19 05:19:11 Yup. Or possibly with the IndexedDBBlobInfo, with
13 IndexedDBValue() {
14 }
15 IndexedDBValue(const std::string& input_bits,
16 const std::vector<IndexedDBBlobInfo>& input_blob_info)
17 : bits(input_bits),
18 blob_info(input_blob_info) {
19 DCHECK(!input_blob_info.size() || input_bits.size());
20 }
21
22 void swap(IndexedDBValue& value) {
23 bits.swap(value.bits);
24 blob_info.swap(value.blob_info);
25 }
26
27 bool empty() const { return bits.empty(); }
28 void clear() {
29 bits.clear();
30 blob_info.clear();
31 }
32
33 std::string bits;
34 std::vector<IndexedDBBlobInfo> blob_info;
35 };
36
37 } // namespace content
38
39 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698