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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_store.h

Issue 650113: Convert SafeBrowsingStoreFile to do bulk reads and writes. (Closed)
Patch Set: Default-initialize POD contents. Created 10 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/safe_browsing_store_file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_browsing/safe_browsing_store.h
diff --git a/chrome/browser/safe_browsing/safe_browsing_store.h b/chrome/browser/safe_browsing/safe_browsing_store.h
index 34aa4b2eb41a5c9b544c7850b2c03c242c833da9..9ecb535093e27538f36f148a717ad69e5c540b50 100644
--- a/chrome/browser/safe_browsing/safe_browsing_store.h
+++ b/chrome/browser/safe_browsing/safe_browsing_store.h
@@ -43,6 +43,7 @@ struct SBAddPrefix {
SBPrefix prefix;
SBAddPrefix(int32 id, SBPrefix p) : chunk_id(id), prefix(p) {}
+ SBAddPrefix() : chunk_id(), prefix() {}
int32 GetAddChunkId() const { return chunk_id; }
SBPrefix GetAddPrefix() const { return prefix; }
@@ -55,6 +56,7 @@ struct SBSubPrefix {
SBSubPrefix(int32 id, int32 add_id, int prefix)
: chunk_id(id), add_chunk_id(add_id), add_prefix(prefix) {}
+ SBSubPrefix() : chunk_id(), add_chunk_id(), add_prefix() {}
int32 GetAddChunkId() const { return add_chunk_id; }
SBPrefix GetAddPrefix() const { return add_prefix; }
@@ -76,6 +78,8 @@ struct SBAddFullHash {
SBAddFullHash(int32 id, int32 r, SBFullHash h)
: chunk_id(id), received(r), full_hash(h) {}
+ SBAddFullHash() : chunk_id(), received(), full_hash() {}
+
int32 GetAddChunkId() const { return chunk_id; }
SBPrefix GetAddPrefix() const { return full_hash.prefix; }
};
@@ -87,6 +91,7 @@ struct SBSubFullHash {
SBSubFullHash(int32 id, int32 add_id, SBFullHash h)
: chunk_id(id), add_chunk_id(add_id), full_hash(h) {}
+ SBSubFullHash() : chunk_id(), add_chunk_id(), full_hash() {}
int32 GetAddChunkId() const { return add_chunk_id; }
SBPrefix GetAddPrefix() const { return full_hash.prefix; }
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/safe_browsing_store_file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698