| Index: android_webview/browser/aw_browser_context.h
|
| diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h
|
| index 9028da0afb9e64f6138e23b95032177c2908ffb3..70cc2ed111970587408e8472d42590b540c889e5 100644
|
| --- a/android_webview/browser/aw_browser_context.h
|
| +++ b/android_webview/browser/aw_browser_context.h
|
| @@ -50,6 +50,10 @@ namespace visitedlink {
|
| class VisitedLinkMaster;
|
| }
|
|
|
| +namespace web_restriction {
|
| +class WebRestrictionProvider;
|
| +}
|
| +
|
| namespace android_webview {
|
|
|
| class AwFormDatabaseService;
|
| @@ -107,6 +111,8 @@ class AwBrowserContext : public content::BrowserContext,
|
|
|
| policy::URLBlacklistManager* GetURLBlacklistManager();
|
|
|
| + web_restriction::WebRestrictionProvider* GetWebRestrictionProvider();
|
| +
|
| // content::BrowserContext implementation.
|
| scoped_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
|
| const base::FilePath& partition_path) override;
|
| @@ -170,6 +176,8 @@ class AwBrowserContext : public content::BrowserContext,
|
| data_reduction_proxy_service_;
|
| scoped_ptr<content::PermissionManager> permission_manager_;
|
|
|
| + scoped_ptr<web_restriction::WebRestrictionProvider> web_restriction_provider_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
|
| };
|
|
|
|
|