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

Unified Diff: public/web/WebFrame.h

Issue 104433003: Attach a WebLayer to a frame element for out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added missing null check Created 7 years 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
« no previous file with comments | « Source/web/WebFrameImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebFrame.h
diff --git a/public/web/WebFrame.h b/public/web/WebFrame.h
index 97d579948e00ac628fa98d2dd71cf68258e267a8..0740d0d4c1897369a69ec8655a3838a6b393f591 100644
--- a/public/web/WebFrame.h
+++ b/public/web/WebFrame.h
@@ -62,6 +62,7 @@ class WebFormElement;
class WebFrameClient;
class WebHistoryItem;
class WebInputElement;
+class WebLayer;
class WebPerformance;
class WebRange;
class WebSecurityOrigin;
@@ -155,6 +156,11 @@ public:
// URLs
virtual WebVector<WebIconURL> iconURLs(int iconTypesMask) const = 0;
+ // For a WebFrame with contents being rendered in another process, this
+ // sets a layer for use by the in-process compositor. WebLayer should be
+ // null if the content is being rendered in the current process.
+ virtual void setRemoteWebLayer(blink::WebLayer*) = 0;
+
// Geometry -----------------------------------------------------------
« no previous file with comments | « Source/web/WebFrameImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698