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

Side by Side Diff: chrome/browser/safe_browsing/services_delegate_impl.h

Issue 2675063002: Browser tests for using the new SafeBrowsing protocol (v4) (Closed)
Patch Set: Use ANNOTATE_LEAKING_OBJECT_PTR Created 3 years, 10 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 #ifndef CHROME_BROWSER_SAFE_BROWSING_SERVICES_DELEGATE_IMPL_H_ 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_SERVICES_DELEGATE_IMPL_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_SERVICES_DELEGATE_IMPL_H_ 6 #define CHROME_BROWSER_SAFE_BROWSING_SERVICES_DELEGATE_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 12 matching lines...) Expand all
23 class ServicesDelegateImpl : public ServicesDelegate { 23 class ServicesDelegateImpl : public ServicesDelegate {
24 public: 24 public:
25 ServicesDelegateImpl(SafeBrowsingService* safe_browsing_service, 25 ServicesDelegateImpl(SafeBrowsingService* safe_browsing_service,
26 ServicesDelegate::ServicesCreator* services_creator); 26 ServicesDelegate::ServicesCreator* services_creator);
27 ~ServicesDelegateImpl() override; 27 ~ServicesDelegateImpl() override;
28 28
29 private: 29 private:
30 // ServicesDelegate: 30 // ServicesDelegate:
31 const scoped_refptr<SafeBrowsingDatabaseManager>& v4_local_database_manager() 31 const scoped_refptr<SafeBrowsingDatabaseManager>& v4_local_database_manager()
32 const override; 32 const override;
33 void Initialize() override; 33 void Initialize(bool v4_enabled) override;
34 void InitializeCsdService( 34 void InitializeCsdService(
35 net::URLRequestContextGetter* context_getter) override; 35 net::URLRequestContextGetter* context_getter) override;
36 void ShutdownServices() override; 36 void ShutdownServices() override;
37 void RefreshState(bool enable) override; 37 void RefreshState(bool enable) override;
38 void ProcessResourceRequest(const ResourceRequestInfo* request) override; 38 void ProcessResourceRequest(const ResourceRequestInfo* request) override;
39 std::unique_ptr<TrackedPreferenceValidationDelegate> 39 std::unique_ptr<TrackedPreferenceValidationDelegate>
40 CreatePreferenceValidationDelegate(Profile* profile) override; 40 CreatePreferenceValidationDelegate(Profile* profile) override;
41 void RegisterDelayedAnalysisCallback( 41 void RegisterDelayedAnalysisCallback(
42 const DelayedAnalysisCallback& callback) override; 42 const DelayedAnalysisCallback& callback) override;
43 void RegisterExtendedReportingOnlyDelayedAnalysisCallback( 43 void RegisterExtendedReportingOnlyDelayedAnalysisCallback(
(...skipping 30 matching lines...) Expand all
74 // The Pver4 local database manager handles the database and download logic 74 // The Pver4 local database manager handles the database and download logic
75 // Accessed on both UI and IO thread. 75 // Accessed on both UI and IO thread.
76 scoped_refptr<SafeBrowsingDatabaseManager> v4_local_database_manager_; 76 scoped_refptr<SafeBrowsingDatabaseManager> v4_local_database_manager_;
77 77
78 DISALLOW_COPY_AND_ASSIGN(ServicesDelegateImpl); 78 DISALLOW_COPY_AND_ASSIGN(ServicesDelegateImpl);
79 }; 79 };
80 80
81 } // namespace safe_browsing 81 } // namespace safe_browsing
82 82
83 #endif // CHROME_BROWSER_SAFE_BROWSING_SERVICES_DELEGATE_IMPL_H_ 83 #endif // CHROME_BROWSER_SAFE_BROWSING_SERVICES_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/services_delegate.h ('k') | chrome/browser/safe_browsing/services_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698