| Index: chrome/browser/safe_browsing/remote_database_manager.h
|
| diff --git a/chrome/browser/safe_browsing/remote_database_manager.h b/chrome/browser/safe_browsing/remote_database_manager.h
|
| index a6b7340d5958a90a733dc6be02c9f12dbf100a61..0443010dd3e2a7b012494c3ffc7842c6e253d402 100644
|
| --- a/chrome/browser/safe_browsing/remote_database_manager.h
|
| +++ b/chrome/browser/safe_browsing/remote_database_manager.h
|
| @@ -30,6 +30,8 @@ class RemoteSafeBrowsingDatabaseManager : public SafeBrowsingDatabaseManager {
|
| //
|
|
|
| bool IsSupported() const override;
|
| + bool ChecksAreAlwaysAsync() const override;
|
| + bool CanCheckResourceType(content::ResourceType resource_type) const override;
|
| bool CanCheckUrl(const GURL& url) const override;
|
| bool download_protection_enabled() const override;
|
| bool CheckBrowseUrl(const GURL& url, Client* client) override;
|
| @@ -63,6 +65,9 @@ class RemoteSafeBrowsingDatabaseManager : public SafeBrowsingDatabaseManager {
|
| std::vector<ClientRequest*> current_requests_;
|
| bool enabled_;
|
|
|
| + std::set<content::ResourceType> resource_types_to_check_;
|
| + bool is_android_field_trial_enabled_;
|
| +
|
| friend class base::RefCountedThreadSafe<RemoteSafeBrowsingDatabaseManager>;
|
| DISALLOW_COPY_AND_ASSIGN(RemoteSafeBrowsingDatabaseManager);
|
| }; // class RemoteSafeBrowsingDatabaseManager
|
|
|