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

Unified Diff: public/web/WebFrameClient.h

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 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 | « public/web/WebDocument.h ('k') | public/web/WebLocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebFrameClient.h
diff --git a/public/web/WebFrameClient.h b/public/web/WebFrameClient.h
index 425d337ca81b73bb0b4c08c7db6574b060743656..0fa1f0b522b883f6d39ae95ebf411abbdd5d20c3 100644
--- a/public/web/WebFrameClient.h
+++ b/public/web/WebFrameClient.h
@@ -95,7 +95,6 @@ struct WebContextMenuData;
struct WebPluginParams;
struct WebPopupMenuInfo;
struct WebRect;
-struct WebTransitionElementData;
struct WebURLError;
class WebFrameClient {
@@ -212,7 +211,6 @@ public:
WebNavigationType navigationType;
WebNavigationPolicy defaultPolicy;
bool isRedirect;
- bool isTransitionNavigation;
NavigationPolicyInfo(WebURLRequest& urlRequest)
: frame(0)
@@ -220,8 +218,7 @@ public:
, urlRequest(urlRequest)
, navigationType(WebNavigationTypeOther)
, defaultPolicy(WebNavigationPolicyIgnore)
- , isRedirect(false)
- , isTransitionNavigation(false) { }
+ , isRedirect(false) { }
};
virtual WebNavigationPolicy decidePolicyForNavigation(const NavigationPolicyInfo& info)
@@ -262,8 +259,7 @@ public:
virtual void didCreateDataSource(WebLocalFrame*, WebDataSource*) { }
// A new provisional load has been started.
- virtual void didStartProvisionalLoad(WebLocalFrame* localFrame, bool isTransitionNavigation,
- double triggeringEventTime) { }
+ virtual void didStartProvisionalLoad(WebLocalFrame* localFrame, double triggeringEventTime) { }
// The provisional load was redirected via a HTTP 3xx response.
virtual void didReceiveServerRedirectForProvisionalLoad(WebLocalFrame*) { }
@@ -331,12 +327,6 @@ public:
// out-of-process parent frame.
virtual void dispatchLoad() { }
-
- // Transition navigations -----------------------------------------------
-
- // Provides serialized markup of transition elements for use in the following navigation.
- virtual void addNavigationTransitionData(const WebTransitionElementData&) { }
-
// Web Notifications ---------------------------------------------------
// Requests permission to display platform notifications on the origin of this frame.
« no previous file with comments | « public/web/WebDocument.h ('k') | public/web/WebLocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698