Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(822)

Side by Side Diff: chrome/browser/safe_browsing/services_delegate_stub.cc

Issue 2912383004: Fill is_chrome_signin_password field in the password entry pings. (Closed)
Patch Set: move to SB service delegate Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 return nullptr;
Nathan Parker 2017/06/07 22:16:06 nit: Does this get called? If not, you could NOTI
Jialiu Lin 2017/06/07 22:41:50 NOTIMPLEMENTED() added.
79 }
80
74 } // namespace safe_browsing 81 } // namespace safe_browsing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698