// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CEF_LIBCEF_BROWSER_CONTENT_BROWSER_CLIENT_H_ #define CEF_LIBCEF_BROWSER_CONTENT_BROWSER_CLIENT_H_ #pragma once #include #include #include #include #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/synchronization/lock.h" #include "content/public/browser/content_browser_client.h" #include "googleurl/src/gurl.h" class CefBrowserContext; class CefBrowserInfo; class CefBrowserMainParts; class CefMediaObserver; class CefResourceDispatcherHostDelegate; namespace content { class PluginServiceFilter; class SiteInstance; } class CefContentBrowserClient : public content::ContentBrowserClient { public: CefContentBrowserClient(); virtual ~CefContentBrowserClient(); // Returns the singleton CefContentBrowserClient instance. static CefContentBrowserClient* Get(); CefBrowserMainParts* browser_main_parts() const { return browser_main_parts_; } // Methods for managing CefBrowserInfo life span. Do not add new callers of // these methods. // During popup window creation there is a race between the call to // CefBrowserMessageFilter::OnGetNewBrowserInfo on the IO thread and the call // to CefBrowserHostImpl::ShouldCreateWebContents on the UI thread. To resolve // this race CefBrowserInfo may be created when requested for the first time // and before the associated CefBrowserHostImpl is created. scoped_refptr CreateBrowserInfo(); scoped_refptr GetOrCreateBrowserInfo(int render_process_id, int render_view_id); void RemoveBrowserInfo(scoped_refptr browser_info); void DestroyAllBrowsers(); // Retrieves the CefBrowserInfo matching the specified IDs or an empty // pointer if no match is found. It is allowed to add new callers of this // method but consider using CefContext::GetBrowserByRoutingID() instead. scoped_refptr GetBrowserInfo(int render_process_id, int render_view_id); virtual content::BrowserMainParts* CreateBrowserMainParts( const content::MainFunctionParams& parameters) OVERRIDE; virtual content::WebContentsView* OverrideCreateWebContentsView( content::WebContents* web_contents, content::RenderViewHostDelegateView** rvhdv) OVERRIDE; virtual void RenderProcessHostCreated( content::RenderProcessHost* host) OVERRIDE; virtual net::URLRequestContextGetter* CreateRequestContext( content::BrowserContext* browser_context, scoped_ptr blob_protocol_handler, scoped_ptr file_system_protocol_handler, scoped_ptr developer_protocol_handler, scoped_ptr chrome_protocol_handler, scoped_ptr chrome_devtools_protocol_handler) OVERRIDE; virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( content::BrowserContext* browser_context, const base::FilePath& partition_path, bool in_memory, scoped_ptr blob_protocol_handler, scoped_ptr file_system_protocol_handler, scoped_ptr developer_protocol_handler, scoped_ptr chrome_protocol_handler, scoped_ptr chrome_devtools_protocol_handler) OVERRIDE; virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, int child_process_id) OVERRIDE; virtual content::QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; virtual content::MediaObserver* GetMediaObserver() OVERRIDE; virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; virtual bool CanCreateWindow(const GURL& opener_url, const GURL& origin, WindowContainerType container_type, content::ResourceContext* context, int render_process_id, bool* no_javascript_access) OVERRIDE; virtual void ResourceDispatcherHostCreated() OVERRIDE; virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, const GURL& url, webkit_glue::WebPreferences* prefs) OVERRIDE; virtual void BrowserURLHandlerCreated( content::BrowserURLHandler* handler) OVERRIDE; virtual std::string GetDefaultDownloadName() OVERRIDE; #if defined(OS_WIN) const wchar_t* GetResourceDllName() OVERRIDE; #endif // Store additional state from the ViewHostMsg_CreateWindow message that will // be used when CanCreateWindow() is called. struct LastCreateWindowParams { int opener_process_id; int opener_view_id; int64 opener_frame_id; GURL target_url; string16 target_frame_name; }; void set_last_create_window_params(const LastCreateWindowParams& params); private: CefBrowserContext* CefBrowserContextForBrowserContext( content::BrowserContext* content_browser_context); CefBrowserMainParts* browser_main_parts_; scoped_ptr media_observer_; scoped_ptr plugin_service_filter_; scoped_ptr resource_dispatcher_host_delegate_; base::Lock browser_info_lock_; // Access must be protected by |browser_info_lock_|. typedef std::list > BrowserInfoList; BrowserInfoList browser_info_list_; int next_browser_id_; // Only accessed on the IO thread. LastCreateWindowParams last_create_window_params_; }; #endif // CEF_LIBCEF_BROWSER_CONTENT_BROWSER_CLIENT_H_