Home
last modified time | relevance | path

Searched refs:SafeBrowsingStoreFile (Results 1 – 5 of 5) sorted by relevance

/external/chromium/chrome/browser/safe_browsing/
Dsafe_browsing_store_file.cc199 void SafeBrowsingStoreFile::RecordFormatEvent(FormatEventType event_type) { in RecordFormatEvent()
204 void SafeBrowsingStoreFile::CheckForOriginalAndDelete( in CheckForOriginalAndDelete()
229 SafeBrowsingStoreFile::SafeBrowsingStoreFile() in SafeBrowsingStoreFile() function in SafeBrowsingStoreFile
236 SafeBrowsingStoreFile::~SafeBrowsingStoreFile() { in ~SafeBrowsingStoreFile()
240 bool SafeBrowsingStoreFile::Delete() { in Delete()
272 void SafeBrowsingStoreFile::Init(const FilePath& filename, in Init()
278 bool SafeBrowsingStoreFile::BeginChunk() { in BeginChunk()
282 bool SafeBrowsingStoreFile::WriteAddPrefix(int32 chunk_id, SBPrefix prefix) { in WriteAddPrefix()
287 bool SafeBrowsingStoreFile::GetAddPrefixes( in GetAddPrefixes()
309 bool SafeBrowsingStoreFile::GetAddFullHashes( in GetAddFullHashes()
[all …]
Dsafe_browsing_store_file_unittest.cc34 SafeBrowsingStoreFile::TemporaryFileForFilename(filename_); in SetUp()
37 store_.reset(new SafeBrowsingStoreFile()); in SetUp()
55 scoped_ptr<SafeBrowsingStoreFile> store_;
64 SafeBrowsingStoreFile::TemporaryFileForFilename(filename_); in TEST_F()
75 store_.reset(new SafeBrowsingStoreFile()); in TEST_F()
91 SafeBrowsingStoreFile test_store; in TEST_F()
Dsafe_browsing_store_file.h107 class SafeBrowsingStoreFile : public SafeBrowsingStore {
109 SafeBrowsingStoreFile();
110 virtual ~SafeBrowsingStoreFile();
280 DISALLOW_COPY_AND_ASSIGN(SafeBrowsingStoreFile);
Dsafe_browsing_database_unittest.cc386 SafeBrowsingStoreFile* browse_store = new SafeBrowsingStoreFile(); in TEST_F()
387 SafeBrowsingStoreFile* download_store = new SafeBrowsingStoreFile(); in TEST_F()
388 SafeBrowsingStoreFile* csd_whitelist_store = new SafeBrowsingStoreFile(); in TEST_F()
1074 SafeBrowsingStoreFile* store = new SafeBrowsingStoreFile(); in TEST_F()
1142 SafeBrowsingStoreFile* browse_store = new SafeBrowsingStoreFile(); in TEST_F()
1143 SafeBrowsingStoreFile* download_store = new SafeBrowsingStoreFile(); in TEST_F()
1144 SafeBrowsingStoreFile* csd_whitelist_store = new SafeBrowsingStoreFile(); in TEST_F()
1248 database_.reset(new SafeBrowsingDatabaseNew(new SafeBrowsingStoreFile(), in TEST_F()
1254 SafeBrowsingStoreFile* browse_store = new SafeBrowsingStoreFile(); in TEST_F()
1255 SafeBrowsingStoreFile* csd_whitelist_store = new SafeBrowsingStoreFile(); in TEST_F()
[all …]
Dsafe_browsing_database.cc396 new SafeBrowsingStoreFile, in CreateSafeBrowsingDatabase()
397 enable_download_protection ? new SafeBrowsingStoreFile : NULL, in CreateSafeBrowsingDatabase()
398 enable_client_side_whitelist ? new SafeBrowsingStoreFile : NULL); in CreateSafeBrowsingDatabase()
473 browse_store_(new SafeBrowsingStoreFile), in SafeBrowsingDatabaseNew()