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

Unified Diff: Source/core/frame/Frame.h

Issue 1152053006: Allow RemoteFrames to be navigated through targeted navigation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed TODO, added a comment. Created 5 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 | « no previous file | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Frame.h
diff --git a/Source/core/frame/Frame.h b/Source/core/frame/Frame.h
index bccaf64b1edd41d460a508173fbd9aa9b447ea3b..6e586ec9ddf915f89ed4a3293ddf426574be0761 100644
--- a/Source/core/frame/Frame.h
+++ b/Source/core/frame/Frame.h
@@ -52,6 +52,7 @@ class SecurityContext;
class Settings;
class WindowProxy;
class WindowProxyManager;
+struct FrameLoadRequest;
// Status of user gesture.
enum class UserGestureStatus { Active, None };
@@ -69,6 +70,9 @@ public:
virtual WindowProxy* windowProxy(DOMWrapperWorld&) = 0;
virtual void navigate(Document& originDocument, const KURL&, bool lockBackForwardList, UserGestureStatus) = 0;
+ // This version of Frame::navigate assumes the resulting navigation is not
+ // to be started on a timer. Use the method above in such cases.
+ virtual void navigate(const FrameLoadRequest&) = 0;
virtual void reload(ReloadPolicy, ClientRedirectPolicy) = 0;
virtual void detach();
« no previous file with comments | « no previous file | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698