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

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

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_ 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_ 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
7 7
8 #include <stddef.h>
9
8 #include <algorithm> 10 #include <algorithm>
9 #include <string> 11 #include <string>
10 #include <vector> 12 #include <vector>
11 13
12 #include "content/browser/indexed_db/indexed_db_blob_info.h" 14 #include "content/browser/indexed_db/indexed_db_blob_info.h"
13 #include "content/common/content_export.h" 15 #include "content/common/content_export.h"
14 16
15 namespace content { 17 namespace content {
16 18
17 struct CONTENT_EXPORT IndexedDBValue { 19 struct CONTENT_EXPORT IndexedDBValue {
(...skipping 19 matching lines...) Expand all
37 return bits.size() + blob_info.size() * sizeof(IndexedDBBlobInfo); 39 return bits.size() + blob_info.size() * sizeof(IndexedDBBlobInfo);
38 } 40 }
39 41
40 std::string bits; 42 std::string bits;
41 std::vector<IndexedDBBlobInfo> blob_info; 43 std::vector<IndexedDBBlobInfo> blob_info;
42 }; 44 };
43 45
44 } // namespace content 46 } // namespace content
45 47
46 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_ 48 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_VALUE_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_unittest.cc ('k') | content/browser/indexed_db/leveldb/leveldb_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698