OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/services_delegate_stub.h" | 5 #include "chrome/browser/safe_browsing/services_delegate_stub.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
9 #include "components/safe_browsing_db/v4_local_database_manager.h" | 9 #include "components/safe_browsing_db/v4_local_database_manager.h" |
10 #include "services/preferences/public/interfaces/tracked_preference_validation_d
elegate.mojom.h" | 10 #include "services/preferences/public/interfaces/tracked_preference_validation_d
elegate.mojom.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 DownloadProtectionService* ServicesDelegateStub::GetDownloadService() { | 64 DownloadProtectionService* ServicesDelegateStub::GetDownloadService() { |
65 return nullptr; | 65 return nullptr; |
66 } | 66 } |
67 | 67 |
68 void ServicesDelegateStub::StartOnIOThread( | 68 void ServicesDelegateStub::StartOnIOThread( |
69 net::URLRequestContextGetter* url_request_context_getter, | 69 net::URLRequestContextGetter* url_request_context_getter, |
70 const V4ProtocolConfig& v4_config) {} | 70 const V4ProtocolConfig& v4_config) {} |
71 | 71 |
72 void ServicesDelegateStub::StopOnIOThread(bool shutdown) {} | 72 void ServicesDelegateStub::StopOnIOThread(bool shutdown) {} |
73 | 73 |
| 74 void ServicesDelegateStub::CreatePasswordProtectionService(Profile* profile) {} |
| 75 void ServicesDelegateStub::RemovePasswordProtectionService(Profile* profile) {} |
| 76 PasswordProtectionService* ServicesDelegateStub::GetPasswordProtectionService( |
| 77 Profile* profile) const { |
| 78 NOTIMPLEMENTED(); |
| 79 return nullptr; |
| 80 } |
| 81 |
74 } // namespace safe_browsing | 82 } // namespace safe_browsing |
OLD | NEW |