diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-03 16:33:45 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-03 16:33:45 +0000 |
commit | fc2b46bc8a826bbce32c0a1cfef6678aa7b0bb2b (patch) | |
tree | fc99a46723b215ce1dcb6e9d0d6a9c859a1317ae /content/public/browser/content_browser_client.h | |
parent | 08bb7500c4583bb641717819ade7af8e520e92cb (diff) | |
download | chromium_src-fc2b46bc8a826bbce32c0a1cfef6678aa7b0bb2b.zip chromium_src-fc2b46bc8a826bbce32c0a1cfef6678aa7b0bb2b.tar.gz chromium_src-fc2b46bc8a826bbce32c0a1cfef6678aa7b0bb2b.tar.bz2 |
Hide WebContentsView from Chrome. This also removes WebContentsViewPort.
TestWebContentsView goes away since it's not needed anymore
BUG=304341
R=avi@chromium.org, thestig@chromium.org
Review URL: https://codereview.chromium.org/262823006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/content_browser_client.h')
-rw-r--r-- | content/public/browser/content_browser_client.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h index ac40ae2..5f0473b 100644 --- a/content/public/browser/content_browser_client.h +++ b/content/public/browser/content_browser_client.h @@ -95,14 +95,12 @@ class QuotaPermissionContext; class RenderFrameHost; class RenderProcessHost; class RenderViewHost; -class RenderViewHostDelegateView; class ResourceContext; class SiteInstance; class SpeechRecognitionManagerDelegate; class VibrationProvider; class WebContents; class WebContentsViewDelegate; -class WebContentsViewPort; struct MainFunctionParams; struct Referrer; struct ShowDesktopNotificationHostMsgParams; @@ -135,14 +133,6 @@ class CONTENT_EXPORT ContentBrowserClient { virtual BrowserMainParts* CreateBrowserMainParts( const MainFunctionParams& parameters); - // Allows an embedder to return their own WebContentsViewPort implementation. - // Return NULL to let the default one for the platform be created. Otherwise - // |render_view_host_delegate_view| also needs to be provided, and it is - // owned by the embedder. - virtual WebContentsViewPort* OverrideCreateWebContentsView( - WebContents* web_contents, - RenderViewHostDelegateView** render_view_host_delegate_view); - // If content creates the WebContentsView implementation, it will ask the // embedder to return an (optional) delegate to customize it. The view will // own the delegate. |