| Index: chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
|
| index 96f83526b831222fb98aa7378a842f112d50e741..ac6e67c6b337d732c29ebe877a7aeead9c385c40 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
|
| @@ -102,6 +102,14 @@ class FakeSafeBrowsingDatabaseManager : public TestSafeBrowsingDatabaseManager {
|
| badurls[url.spec()] = threat_type;
|
| }
|
|
|
| + // These are called when checking URLs, so we implement them.
|
| + bool IsSupported() const override { return true; }
|
| + bool ChecksAreAlwaysAsync() const override { return false; }
|
| + bool CanCheckResourceType(
|
| + content::ResourceType /* resource_type */) const override {
|
| + return true;
|
| + }
|
| +
|
| // Called during startup, so must not check-fail.
|
| bool CheckExtensionIDs(const std::set<std::string>& extension_ids,
|
| Client* client) override {
|
|
|