| Index: chrome/browser/subresource_filter/chrome_subresource_filter_client.h
|
| diff --git a/chrome/browser/subresource_filter/chrome_subresource_filter_client.h b/chrome/browser/subresource_filter/chrome_subresource_filter_client.h
|
| index 218fd723f0fbffecc0a044c87f1e4b9422288433..73649c90a5eb0030fb25cfa04a91aa07fa24d260 100644
|
| --- a/chrome/browser/subresource_filter/chrome_subresource_filter_client.h
|
| +++ b/chrome/browser/subresource_filter/chrome_subresource_filter_client.h
|
| @@ -76,13 +76,17 @@ class ChromeSubresourceFilterClient
|
| subresource_filter::VerifiedRulesetDealer::Handle* GetRulesetDealer()
|
| override;
|
|
|
| + bool did_show_ui_for_navigation() const {
|
| + return did_show_ui_for_navigation_;
|
| + }
|
| +
|
| static void LogAction(SubresourceFilterAction action);
|
|
|
| private:
|
| ContentSetting GetContentSettingForUrl(const GURL& url);
|
| std::set<std::string> whitelisted_hosts_;
|
| content::WebContents* web_contents_;
|
| - bool shown_for_navigation_;
|
| + bool did_show_ui_for_navigation_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ChromeSubresourceFilterClient);
|
| };
|
|
|