// 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_RENDERER_CONTENT_RENDERER_CLIENT_H_ #define CEF_LIBCEF_RENDERER_CONTENT_RENDERER_CLIENT_H_ #pragma once #include #include #include #include #include "libcef/renderer/browser_impl.h" #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop_proxy.h" #include "content/public/renderer/content_renderer_client.h" class CefRenderProcessObserver; struct Cef_CrossOriginWhiteListEntry_Params; class CefContentRendererClient : public content::ContentRendererClient { public: CefContentRendererClient(); virtual ~CefContentRendererClient(); // Returns the singleton CefContentRendererClient instance. static CefContentRendererClient* Get(); // Returns the browser associated with the specified RenderView. CefRefPtr GetBrowserForView(content::RenderView* view); // Returns the browser associated with the specified main WebFrame. CefRefPtr GetBrowserForMainFrame(WebKit::WebFrame* frame); // Called from CefBrowserImpl::OnDestruct(). void OnBrowserDestroyed(CefBrowserImpl* browser); // Add a custom scheme registration. void AddCustomScheme(const std::string& scheme_name, bool is_local, bool is_display_isolated); // Render thread message loop proxy. base::MessageLoopProxy* render_loop() const { return render_loop_.get(); } void WebKitInitialized(); void DevToolsAgentAttached(); void DevToolsAgentDetached(); void SetUncaughtExceptionStackSize(int stackSize); private: // ContentRendererClient implementation. virtual void RenderThreadStarted() OVERRIDE; virtual void RenderViewCreated(content::RenderView* render_view) OVERRIDE; virtual bool HandleNavigation(WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, WebKit::WebNavigationType type, WebKit::WebNavigationPolicy default_policy, bool is_redirect) OVERRIDE; virtual void DidCreateScriptContext(WebKit::WebFrame* frame, v8::Handle context, int extension_group, int world_id) OVERRIDE; virtual void WillReleaseScriptContext(WebKit::WebFrame* frame, v8::Handle context, int world_id) OVERRIDE; scoped_refptr render_loop_; scoped_ptr observer_; // Map of RenderView pointers to CefBrowserImpl references. typedef std::map > BrowserMap; BrowserMap browsers_; // Custom schemes that need to be registered with WebKit. struct SchemeInfo; typedef std::list SchemeInfoList; SchemeInfoList scheme_info_list_; // Cross-origin white list entries that need to be registered with WebKit. typedef std::vector CrossOriginList; CrossOriginList cross_origin_whitelist_entries_; int devtools_agent_count_; int uncaught_exception_stack_size_; }; #endif // CEF_LIBCEF_RENDERER_CONTENT_RENDERER_CLIENT_H_