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

Side by Side Diff: Source/web/FrameLoaderClientImpl.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 virtual void detached() override; 80 virtual void detached() override;
81 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifi er, ResourceRequest&, const ResourceResponse& redirectResponse) override; 81 virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifi er, ResourceRequest&, const ResourceResponse& redirectResponse) override;
82 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long ident ifier, const ResourceResponse&) override; 82 virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long ident ifier, const ResourceResponse&) override;
83 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res ourceLoadPriority, int intraPriorityValue) override; 83 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res ourceLoadPriority, int intraPriorityValue) override;
84 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identif ier) override; 84 virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identif ier) override;
85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const ResourceResponse&) override; 85 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const ResourceResponse&) override;
86 virtual void dispatchDidHandleOnloadEvents() override; 86 virtual void dispatchDidHandleOnloadEvents() override;
87 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() override; 87 virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() override;
88 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType) override; 88 virtual void dispatchDidNavigateWithinPage(HistoryItem*, HistoryCommitType) override;
89 virtual void dispatchWillClose() override; 89 virtual void dispatchWillClose() override;
90 virtual void dispatchDidStartProvisionalLoad(bool isTransitionNavigation, do uble triggeringEventTime) override; 90 virtual void dispatchDidStartProvisionalLoad(double triggeringEventTime) ove rride;
91 virtual void dispatchDidReceiveTitle(const String&) override; 91 virtual void dispatchDidReceiveTitle(const String&) override;
92 virtual void dispatchDidChangeIcons(IconType) override; 92 virtual void dispatchDidChangeIcons(IconType) override;
93 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override ; 93 virtual void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override ;
94 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCom mitType) override; 94 virtual void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCom mitType) override;
95 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) ov erride; 95 virtual void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) ov erride;
96 virtual void dispatchDidFinishDocumentLoad() override; 96 virtual void dispatchDidFinishDocumentLoad() override;
97 virtual void dispatchDidFinishLoad() override; 97 virtual void dispatchDidFinishLoad() override;
98 virtual void dispatchDidFirstVisuallyNonEmptyLayout() override; 98 virtual void dispatchDidFirstVisuallyNonEmptyLayout() override;
99 99
100 virtual void dispatchDidChangeThemeColor() override; 100 virtual void dispatchDidChangeThemeColor() override;
101 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy, bool isTransitionNavigation) override; 101 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) override;
102 virtual void dispatchAddNavigationTransitionData(const Document::TransitionE lementData&) override;
103 virtual void dispatchWillRequestResource(FetchRequest*) override; 102 virtual void dispatchWillRequestResource(FetchRequest*) override;
104 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override; 103 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override;
105 virtual void dispatchWillSubmitForm(HTMLFormElement*) override; 104 virtual void dispatchWillSubmitForm(HTMLFormElement*) override;
106 virtual void didStartLoading(LoadStartType) override; 105 virtual void didStartLoading(LoadStartType) override;
107 virtual void didStopLoading() override; 106 virtual void didStopLoading() override;
108 virtual void progressEstimateChanged(double progressEstimate) override; 107 virtual void progressEstimateChanged(double progressEstimate) override;
109 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con st String& suggestedName = String()) override; 108 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con st String& suggestedName = String()) override;
110 virtual bool navigateBackForward(int offset) const override; 109 virtual bool navigateBackForward(int offset) const override;
111 virtual void didAccessInitialDocument() override; 110 virtual void didAccessInitialDocument() override;
112 virtual void didDisplayInsecureContent() override; 111 virtual void didDisplayInsecureContent() override;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 // The WebFrame that owns this object and manages its lifetime. Therefore, 187 // The WebFrame that owns this object and manages its lifetime. Therefore,
189 // the web frame object is guaranteed to exist. 188 // the web frame object is guaranteed to exist.
190 WebLocalFrameImpl* m_webFrame; 189 WebLocalFrameImpl* m_webFrame;
191 }; 190 };
192 191
193 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 192 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
194 193
195 } // namespace blink 194 } // namespace blink
196 195
197 #endif 196 #endif
OLDNEW
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698