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 namespace safe_browsing { |
| 14 |
13 bool TestSafeBrowsingDatabaseManager::IsSupported() const { | 15 bool TestSafeBrowsingDatabaseManager::IsSupported() const { |
14 NOTIMPLEMENTED(); | 16 NOTIMPLEMENTED(); |
15 return false; | 17 return false; |
16 } | 18 } |
17 | 19 |
18 bool TestSafeBrowsingDatabaseManager::ChecksAreAlwaysAsync() const { | 20 bool TestSafeBrowsingDatabaseManager::ChecksAreAlwaysAsync() const { |
19 NOTIMPLEMENTED(); | 21 NOTIMPLEMENTED(); |
20 return false; | 22 return false; |
21 } | 23 } |
22 | 24 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 99 |
98 void TestSafeBrowsingDatabaseManager::CancelCheck(Client* client) { | 100 void TestSafeBrowsingDatabaseManager::CancelCheck(Client* client) { |
99 NOTIMPLEMENTED(); | 101 NOTIMPLEMENTED(); |
100 } | 102 } |
101 | 103 |
102 void TestSafeBrowsingDatabaseManager::StartOnIOThread() { | 104 void TestSafeBrowsingDatabaseManager::StartOnIOThread() { |
103 } | 105 } |
104 | 106 |
105 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { | 107 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { |
106 } | 108 } |
| 109 |
| 110 } // namespace safe_browsing |
OLD | NEW |