Index: chrome/browser/safe_browsing/services_delegate_impl.h |
diff --git a/chrome/browser/safe_browsing/services_delegate_impl.h b/chrome/browser/safe_browsing/services_delegate_impl.h |
index a6608f4c7bac05d94d9c757ebb6de54b86d2dfd6..e975b83914bcb5677d947af39b4d6151da87abf3 100644 |
--- a/chrome/browser/safe_browsing/services_delegate_impl.h |
+++ b/chrome/browser/safe_browsing/services_delegate_impl.h |
@@ -16,7 +16,7 @@ |
namespace safe_browsing { |
-class V4LocalDatabaseManager; |
+class SafeBrowsingDatabaseManager; |
// Actual ServicesDelegate implementation. Create via |
// ServicesDelegate::Create(). |
@@ -28,7 +28,7 @@ class ServicesDelegateImpl : public ServicesDelegate { |
private: |
// ServicesDelegate: |
- const scoped_refptr<V4LocalDatabaseManager>& v4_local_database_manager() |
+ const scoped_refptr<SafeBrowsingDatabaseManager>& v4_local_database_manager() |
Scott Hess - ex-Googler
2016/12/08 06:02:55
Wait - you can even do this?
I mean, of course yo
Nathan Parker
2016/12/08 23:00:58
Yea it works, but constrains it as you describe. I
|
const override; |
void Initialize() override; |
void InitializeCsdService( |
@@ -65,7 +65,7 @@ class ServicesDelegateImpl : public ServicesDelegate { |
// The Pver4 local database manager handles the database and download logic |
// Accessed on both UI and IO thread. |
- scoped_refptr<V4LocalDatabaseManager> v4_local_database_manager_; |
+ scoped_refptr<SafeBrowsingDatabaseManager> v4_local_database_manager_; |
DISALLOW_COPY_AND_ASSIGN(ServicesDelegateImpl); |
}; |