X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2Fpublic%2Fweb%2FWebFrame.h;h=a966e29f8f3e20a209a50ab404b46e4780d7a453;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=171b5ffe89f2f67088689c8dfe13a7e2a0105504;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/public/web/WebFrame.h b/src/third_party/WebKit/public/web/WebFrame.h index 171b5ff..a966e29 100644 --- a/src/third_party/WebKit/public/web/WebFrame.h +++ b/src/third_party/WebKit/public/web/WebFrame.h @@ -159,6 +159,10 @@ public: // URLs virtual WebVector iconURLs(int iconTypesMask) const = 0; + // Notify the WebFrame as to whether its frame will be rendered in a + // separate renderer process. + virtual void setIsRemote(bool) = 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. @@ -213,6 +217,12 @@ public: // This is executed between layout tests runs void clearOpener() { setOpener(0); } + // Adds the given frame as a child of this frame. + virtual void appendChild(WebFrame*) = 0; + + // Removes the given child from this frame. + virtual void removeChild(WebFrame*) = 0; + // Returns the parent frame or 0 if this is a top-most frame. virtual WebFrame* parent() const = 0;