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

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

Issue 197753011: Add IndexedDBValue wrapper class to group blob info with bits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Yet still happier clang, I hope. Created 6 years, 9 months 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 // Copyright (c) 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.
4
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
7
8 #include <vector>
9 #include "content/browser/indexed_db/indexed_db_blob_info.h"
10 #include "content/common/content_export.h"
11
12 namespace content {
13
14 struct CONTENT_EXPORT IndexedDBValue {
15 IndexedDBValue();
16 IndexedDBValue(const std::string& input_bits,
17 const std::vector<IndexedDBBlobInfo>& input_blob_info);
18 ~IndexedDBValue();
19
20 void swap(IndexedDBValue& value) {
21 bits.swap(value.bits);
22 blob_info.swap(value.blob_info);
23 }
24
25 bool empty() const { return bits.empty(); }
26 void clear() {
27 bits.clear();
28 blob_info.clear();
29 }
30
31 size_t SizeEstimate() const {
32 return bits.size() + blob_info.size() * sizeof(IndexedDBBlobInfo);
33 }
34
35 std::string bits;
36 std::vector<IndexedDBBlobInfo> blob_info;
37 };
38
39 } // namespace content
40
41 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | content/browser/indexed_db/indexed_db_value.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698