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

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: address nparker's comments 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 NOTIMPLEMENTED();
79 return nullptr;
80 }
81
74 } // namespace safe_browsing 82 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/services_delegate_stub.h ('k') | components/password_manager/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698