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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.h

Issue 564973004: Move ContentWindow from BrowserPlugin To GuestView (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: content/public/browser/browser_plugin_guest_delegate.h
diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h
index 22a346b08de7caa2c664bd4aa6f8444ce2a3c28b..a60bc470112c57636198d7e1fd683f16e942508e 100644
--- a/content/public/browser/browser_plugin_guest_delegate.h
+++ b/content/public/browser/browser_plugin_guest_delegate.h
@@ -28,13 +28,14 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate {
// Notification that the embedder will begin attachment. This is called
// prior to resuming resource loads.
- virtual void WillAttach(content::WebContents* embedder_web_contents) {}
+ virtual void WillAttach(content::WebContents* embedder_web_contents,
+ int element_instance_id) {}
virtual WebContents* CreateNewGuestWindow(
const WebContents::CreateParams& create_params);
// Notification that the embedder has completed attachment.
- virtual void DidAttach() {}
+ virtual void DidAttach(int guest_routing_id) {}
// Notification that the BrowserPlugin has resized.
virtual void ElementSizeChanged(const gfx::Size& old_size,

Powered by Google App Engine
This is Rietveld 408576698