OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |