| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "components/safe_browsing_db/test_database_manager.h" | 5 #include "components/safe_browsing_db/test_database_manager.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 content::ResourceType resource_type) const { | 33 content::ResourceType resource_type) const { |
| 34 NOTIMPLEMENTED(); | 34 NOTIMPLEMENTED(); |
| 35 return false; | 35 return false; |
| 36 } | 36 } |
| 37 | 37 |
| 38 bool TestSafeBrowsingDatabaseManager::CanCheckUrl(const GURL& url) const { | 38 bool TestSafeBrowsingDatabaseManager::CanCheckUrl(const GURL& url) const { |
| 39 NOTIMPLEMENTED(); | 39 NOTIMPLEMENTED(); |
| 40 return false; | 40 return false; |
| 41 } | 41 } |
| 42 | 42 |
| 43 bool TestSafeBrowsingDatabaseManager::download_protection_enabled() const { | 43 bool TestSafeBrowsingDatabaseManager::IsDownloadProtectionEnabled() const { |
| 44 NOTIMPLEMENTED(); | 44 NOTIMPLEMENTED(); |
| 45 return false; | 45 return false; |
| 46 } | 46 } |
| 47 | 47 |
| 48 bool TestSafeBrowsingDatabaseManager::CheckBrowseUrl(const GURL& url, | 48 bool TestSafeBrowsingDatabaseManager::CheckBrowseUrl(const GURL& url, |
| 49 Client* client) { | 49 Client* client) { |
| 50 NOTIMPLEMENTED(); | 50 NOTIMPLEMENTED(); |
| 51 return true; | 51 return true; |
| 52 } | 52 } |
| 53 | 53 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 void TestSafeBrowsingDatabaseManager::StartOnIOThread( | 128 void TestSafeBrowsingDatabaseManager::StartOnIOThread( |
| 129 net::URLRequestContextGetter* request_context_getter, | 129 net::URLRequestContextGetter* request_context_getter, |
| 130 const V4ProtocolConfig& config) { | 130 const V4ProtocolConfig& config) { |
| 131 } | 131 } |
| 132 | 132 |
| 133 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { | 133 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { |
| 134 } | 134 } |
| 135 | 135 |
| 136 } // namespace safe_browsing | 136 } // namespace safe_browsing |
| OLD | NEW |