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

Unified Diff: chrome/browser/safe_browsing/services_delegate_stub.h

Issue 2377273004: Reland: Start checking URLs using PVer4. Verdict not returned to client yet. (Closed)
Patch Set: Remove #DEBUG -- it enables these features on Android :-( Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/services_delegate_stub.h
diff --git a/chrome/browser/safe_browsing/services_delegate_stub.h b/chrome/browser/safe_browsing/services_delegate_stub.h
index 07a326db94aef7200706643741632adc918e25c8..0ced25be92c6c57f5ca8de7ef44a02ca983ee6cb 100644
--- a/chrome/browser/safe_browsing/services_delegate_stub.h
+++ b/chrome/browser/safe_browsing/services_delegate_stub.h
@@ -10,6 +10,8 @@
namespace safe_browsing {
+class V4LocalDatabaseManager;
+
// Dummy ServicesDelegate implementation. Create via ServicesDelegate::Create().
class ServicesDelegateStub : public ServicesDelegate {
public:
@@ -18,6 +20,8 @@ class ServicesDelegateStub : public ServicesDelegate {
private:
// ServicesDelegate:
+ const scoped_refptr<V4LocalDatabaseManager>& v4_local_database_manager()
+ const override;
void Initialize() override;
void InitializeCsdService(
net::URLRequestContextGetter* context_getter) override;
@@ -39,6 +43,8 @@ class ServicesDelegateStub : public ServicesDelegate {
const V4ProtocolConfig& v4_config) override;
void StopOnIOThread(bool shutdown) override;
+ scoped_refptr<V4LocalDatabaseManager> v4_local_database_manager_;
+
DISALLOW_COPY_AND_ASSIGN(ServicesDelegateStub);
};
« no previous file with comments | « chrome/browser/safe_browsing/services_delegate_impl.cc ('k') | chrome/browser/safe_browsing/services_delegate_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698