Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(721)

Unified Diff: chrome/browser/chrome_content_browser_client.h

Issue 12189018: <webview>: Implement WebRequest API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Diff from latest patch Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chrome_content_browser_client.h
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
index 9f2ecc61def948f532bde63ee92fbf92da68c369..e059d07498573e4f10e79cd4c1f8847137251c2d 100644
--- a/chrome/browser/chrome_content_browser_client.h
+++ b/chrome/browser/chrome_content_browser_client.h
@@ -62,6 +62,9 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
virtual void GuestWebContentsCreated(
content::WebContents* guest_web_contents,
content::WebContents* embedder_web_contents) OVERRIDE;
+ virtual void GuestWebContentsDestroyed(
+ content::WebContents* guest_web_contents,
+ content::WebContents* embedder_web_contents) OVERRIDE;
virtual void RenderProcessHostCreated(
content::RenderProcessHost* host) OVERRIDE;
virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context,
@@ -234,6 +237,11 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
// Sets io_thread_application_locale_ to the given value.
void SetApplicationLocaleOnIOThread(const std::string& locale);
+ void RemoveWebViewEventListenersOnIOThread(void* profile,
+ const std::string& extension_id,
+ int embedder_process_id,
+ int embedder_routing_id,
+ int web_view_instance_id);
// Set of origins that can use TCP/UDP private APIs from NaCl.
std::set<std::string> allowed_socket_origins_;
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | chrome/browser/chrome_content_browser_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698