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

Unified Diff: content/renderer/render_frame_impl.h

Issue 218993014: Call currently unimplemented history shims on WebView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix style issues Created 6 years, 9 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 | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index 1a313013bde1f82992208cb8ffe9ccfa09a6a50c..c6a0348df6726c106517b2fadfa507ee3150d3fa 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -20,6 +20,7 @@
#include "ipc/ipc_message.h"
#include "third_party/WebKit/public/web/WebDataSource.h"
#include "third_party/WebKit/public/web/WebFrameClient.h"
+#include "third_party/WebKit/public/web/WebHistoryCommitType.h"
#include "ui/gfx/range/range.h"
class TransportDIB;
@@ -236,6 +237,8 @@ class CONTENT_EXPORT RenderFrameImpl
blink::WebNavigationType type,
blink::WebNavigationPolicy default_policy,
bool is_redirect);
+ virtual blink::WebHistoryItem historyItemForNewChildFrame(
+ blink::WebFrame* frame);
virtual void willSendSubmitEvent(blink::WebFrame* frame,
const blink::WebFormElement& form);
virtual void willSubmitForm(blink::WebFrame* frame,
@@ -249,6 +252,10 @@ class CONTENT_EXPORT RenderFrameImpl
blink::WebFrame* frame,
const blink::WebURLError& error);
virtual void didCommitProvisionalLoad(blink::WebFrame* frame,
Charlie Reis 2014/04/02 18:00:13 nit: This goes on the next line.
+ const blink::WebHistoryItem& item,
+ blink::WebHistoryCommitType commit_type);
+ // DEPRECATED
+ virtual void didCommitProvisionalLoad(blink::WebFrame* frame,
bool is_new_navigation);
virtual void didClearWindowObject(blink::WebFrame* frame, int world_id);
virtual void didCreateDocumentElement(blink::WebFrame* frame);
@@ -263,6 +270,10 @@ class CONTENT_EXPORT RenderFrameImpl
const blink::WebURLError& error);
virtual void didFinishLoad(blink::WebFrame* frame);
virtual void didNavigateWithinPage(blink::WebFrame* frame,
+ const blink::WebHistoryItem& item,
+ blink::WebHistoryCommitType commit_type);
+ // DEPRECATED
+ virtual void didNavigateWithinPage(blink::WebFrame* frame,
bool is_new_navigation);
virtual void didUpdateCurrentHistoryItem(blink::WebFrame* frame);
virtual void didChangeSelection(bool is_empty_selection);
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698