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

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

Issue 2561053002: V4Only: In V4Only mode use PVer4 for all SafeBrowsing operations (Closed)
Patch Set: Fix my comments from 2533993004 Created 4 years 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 0ced25be92c6c57f5ca8de7ef44a02ca983ee6cb..31a6945dfc167fa9e251afd18006031bad00df67 100644
--- a/chrome/browser/safe_browsing/services_delegate_stub.h
+++ b/chrome/browser/safe_browsing/services_delegate_stub.h
@@ -10,8 +10,6 @@
namespace safe_browsing {
-class V4LocalDatabaseManager;
-
// Dummy ServicesDelegate implementation. Create via ServicesDelegate::Create().
class ServicesDelegateStub : public ServicesDelegate {
public:
@@ -20,7 +18,7 @@ class ServicesDelegateStub : public ServicesDelegate {
private:
// ServicesDelegate:
- const scoped_refptr<V4LocalDatabaseManager>& v4_local_database_manager()
+ const scoped_refptr<SafeBrowsingDatabaseManager>& v4_local_database_manager()
const override;
void Initialize() override;
void InitializeCsdService(
@@ -43,7 +41,7 @@ class ServicesDelegateStub : public ServicesDelegate {
const V4ProtocolConfig& v4_config) override;
void StopOnIOThread(bool shutdown) override;
- scoped_refptr<V4LocalDatabaseManager> v4_local_database_manager_;
+ scoped_refptr<SafeBrowsingDatabaseManager> v4_local_database_manager_;
DISALLOW_COPY_AND_ASSIGN(ServicesDelegateStub);
};

Powered by Google App Engine
This is Rietveld 408576698