Chromium Code Reviews| Index: content/public/browser/content_browser_client.h |
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h |
| index d1f9ae03b71b090d9e6b2909c20b482ed2759526..9ffc0edf0faf3ac6eeee5bc38084683bfc855eef 100644 |
| --- a/content/public/browser/content_browser_client.h |
| +++ b/content/public/browser/content_browser_client.h |
| @@ -120,6 +120,7 @@ class ServiceRegistry; |
| class SiteInstance; |
| class SpeechRecognitionManagerDelegate; |
| class TracingDelegate; |
| +class VpnServiceProxy; |
| class WebContents; |
| class WebContentsViewDelegate; |
| struct MainFunctionParams; |
| @@ -587,6 +588,10 @@ class CONTENT_EXPORT ContentBrowserClient { |
| virtual bool IsPepperVpnProviderAPIAllowed(BrowserContext* browser_context, |
| const GURL& url); |
| + // Creates a new VpnServiceProxy. The caller owns the returned value. It's |
|
piman
2016/06/16 00:27:09
Please return a std::unique_ptr<VpnServiceProxy> t
adrian.belgun
2016/06/16 12:05:28
Done.
|
| + // valid to return nullptr. |
| + virtual VpnServiceProxy* GetVpnServiceProxy(BrowserContext* browser_context); |
| + |
| // Returns an implementation of a file selecition policy. Can return nullptr. |
| virtual ui::SelectFilePolicy* CreateSelectFilePolicy( |
| WebContents* web_contents); |