diff options
Diffstat (limited to 'content/public/browser/content_browser_client.h')
-rw-r--r-- | content/public/browser/content_browser_client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h index 080a403..d987fc0 100644 --- a/content/public/browser/content_browser_client.h +++ b/content/public/browser/content_browser_client.h @@ -133,6 +133,10 @@ class ContentBrowserClient { // SiteInstance. virtual bool IsURLSameAsAnySiteInstance(const GURL& url) = 0; + // Returns whether a specified URL is handled by the embedder's internal + // protocol handlers. + virtual bool IsHandledURL(const GURL& url) = 0; + // Returns whether a new view for a given |site_url| can be launched in a // given |process_host|. virtual bool IsSuitableHost(content::RenderProcessHost* process_host, |