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

Side by Side Diff: public/web/WebFrameClient.h

Issue 21639002: Remove the last remnants of client redirect callbacks (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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/web/FrameLoaderClientImpl.cpp ('k') | no next file » | 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) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 143
144 // Navigational notifications ------------------------------------------ 144 // Navigational notifications ------------------------------------------
145 145
146 // A form submission has been requested, but the page's submit event handler 146 // A form submission has been requested, but the page's submit event handler
147 // hasn't yet had a chance to run (and possibly alter/interrupt the submit.) 147 // hasn't yet had a chance to run (and possibly alter/interrupt the submit.)
148 virtual void willSendSubmitEvent(WebFrame*, const WebFormElement&) { } 148 virtual void willSendSubmitEvent(WebFrame*, const WebFormElement&) { }
149 149
150 // A form submission is about to occur. 150 // A form submission is about to occur.
151 virtual void willSubmitForm(WebFrame*, const WebFormElement&) { } 151 virtual void willSubmitForm(WebFrame*, const WebFormElement&) { }
152 152
153 // A client-side redirect completed.
154 virtual void didCompleteClientRedirect(WebFrame*, const WebURL& fromURL) { }
155
156 // A datasource has been created for a new navigation. The given 153 // A datasource has been created for a new navigation. The given
157 // datasource will become the provisional datasource for the frame. 154 // datasource will become the provisional datasource for the frame.
158 virtual void didCreateDataSource(WebFrame*, WebDataSource*) { } 155 virtual void didCreateDataSource(WebFrame*, WebDataSource*) { }
159 156
160 // A new provisional load has been started. 157 // A new provisional load has been started.
161 virtual void didStartProvisionalLoad(WebFrame*) { } 158 virtual void didStartProvisionalLoad(WebFrame*) { }
162 159
163 // The provisional load was redirected via a HTTP 3xx response. 160 // The provisional load was redirected via a HTTP 3xx response.
164 virtual void didReceiveServerRedirectForProvisionalLoad(WebFrame*) { } 161 virtual void didReceiveServerRedirectForProvisionalLoad(WebFrame*) { }
165 162
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 // Extensions3D.h in WebCore/platform/graphics). 384 // Extensions3D.h in WebCore/platform/graphics).
388 virtual void didLoseWebGLContext(WebFrame*, int) { } 385 virtual void didLoseWebGLContext(WebFrame*, int) { }
389 386
390 protected: 387 protected:
391 ~WebFrameClient() { } 388 ~WebFrameClient() { }
392 }; 389 };
393 390
394 } // namespace WebKit 391 } // namespace WebKit
395 392
396 #endif 393 #endif
OLDNEW
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698