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

Unified Diff: webkit/glue/webframe.h

Issue 125280: Send port-closed notification when a frame with ports unloads.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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
« no previous file with comments | « chrome/renderer/resources/renderer_extension_bindings.js ('k') | webkit/glue/webframe_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webframe.h
===================================================================
--- webkit/glue/webframe.h (revision 18701)
+++ webkit/glue/webframe.h (working copy)
@@ -191,6 +191,13 @@
// Returns the top-most frame in the frame hierarchy containing this frame.
virtual WebFrame* GetTop() const = 0;
+ // Returns the first child frame of this frame, or NULL if it has no children.
+ virtual WebFrame* GetFirstChild() const = 0;
+
+ // Returns the next sibling frame of this frame, or NULL if there are no more
+ // siblings.
+ virtual WebFrame* GetNextSibling() const = 0;
+
// Returns the child frame with the given xpath.
// The document of this frame is used as the context node.
// The xpath may need a recursive traversal if non-trivial
« no previous file with comments | « chrome/renderer/resources/renderer_extension_bindings.js ('k') | webkit/glue/webframe_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698