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. |