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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_store_file.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
Index: chrome/browser/safe_browsing/safe_browsing_store_file.h
diff --git a/chrome/browser/safe_browsing/safe_browsing_store_file.h b/chrome/browser/safe_browsing/safe_browsing_store_file.h
index 2ee9bdfaab4033c0ce8f4bb5622d9a27e9e18e1e..269067cc9cda080c6a4a74c0a78e215674c1ce1a 100644
--- a/chrome/browser/safe_browsing/safe_browsing_store_file.h
+++ b/chrome/browser/safe_browsing/safe_browsing_store_file.h
@@ -202,25 +202,6 @@ class SafeBrowsingStoreFile : public SafeBrowsingStore {
// Close all files and clear all buffers.
bool Close();
- // Helpers to read/write the various data sets. Excepting
- // ReadChunksToSet(), which is called too early, the readers skip
- // items from deleted chunks (listed in add_del_cache_ and
- // sub_del_cache_).
- bool ReadChunksToSet(FILE* fp, std::set<int32>* chunks, int count);
- bool WriteChunksFromSet(const std::set<int32>& chunks);
- bool ReadAddPrefixes(FILE* fp,
- std::vector<SBAddPrefix>* add_prefixes, int count);
- bool WriteAddPrefixes(const std::vector<SBAddPrefix>& add_prefixes);
- bool ReadSubPrefixes(FILE* fp,
- std::vector<SBSubPrefix>* sub_prefixes, int count);
- bool WriteSubPrefixes(std::vector<SBSubPrefix>& sub_prefixes);
- bool ReadAddHashes(FILE* fp,
- std::vector<SBAddFullHash>* add_hashes, int count);
- bool WriteAddHashes(const std::vector<SBAddFullHash>& add_hashes);
- bool ReadSubHashes(FILE* fp,
- std::vector<SBSubFullHash>* sub_hashes, int count);
- bool WriteSubHashes(std::vector<SBSubFullHash>& sub_hashes);
-
// Calls |corruption_callback_| if non-NULL, always returns false as
// a convenience to the caller.
bool OnCorruptDatabase();
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_store.h ('k') | chrome/browser/safe_browsing/safe_browsing_store_file.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698