| 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 "chrome/browser/safe_browsing/test_database_manager.h" | 5 #include "chrome/browser/safe_browsing/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 | 
| 11 #include "base/logging.h" | 11 #include "base/logging.h" | 
| 12 | 12 | 
|  | 13 bool TestSafeBrowsingDatabaseManager::IsSupported() const { | 
|  | 14   NOTIMPLEMENTED(); | 
|  | 15   return false; | 
|  | 16 } | 
|  | 17 | 
| 13 bool TestSafeBrowsingDatabaseManager::CanCheckUrl(const GURL& url) const { | 18 bool TestSafeBrowsingDatabaseManager::CanCheckUrl(const GURL& url) const { | 
| 14   NOTIMPLEMENTED(); | 19   NOTIMPLEMENTED(); | 
| 15   return false; | 20   return false; | 
| 16 } | 21 } | 
| 17 | 22 | 
| 18 bool TestSafeBrowsingDatabaseManager::download_protection_enabled() const { | 23 bool TestSafeBrowsingDatabaseManager::download_protection_enabled() const { | 
| 19   NOTIMPLEMENTED(); | 24   NOTIMPLEMENTED(); | 
| 20   return false; | 25   return false; | 
| 21 } | 26 } | 
| 22 | 27 | 
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 81 | 86 | 
| 82 void TestSafeBrowsingDatabaseManager::CancelCheck(Client* client) { | 87 void TestSafeBrowsingDatabaseManager::CancelCheck(Client* client) { | 
| 83   NOTIMPLEMENTED(); | 88   NOTIMPLEMENTED(); | 
| 84 } | 89 } | 
| 85 | 90 | 
| 86 void TestSafeBrowsingDatabaseManager::StartOnIOThread() { | 91 void TestSafeBrowsingDatabaseManager::StartOnIOThread() { | 
| 87 } | 92 } | 
| 88 | 93 | 
| 89 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { | 94 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { | 
| 90 } | 95 } | 
| OLD | NEW | 
|---|