| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 virtual void willSendSubmitEvent(const WebFormElement&) {} | 327 virtual void willSendSubmitEvent(const WebFormElement&) {} |
| 328 | 328 |
| 329 // A form submission is about to occur. | 329 // A form submission is about to occur. |
| 330 virtual void willSubmitForm(const WebFormElement&) {} | 330 virtual void willSubmitForm(const WebFormElement&) {} |
| 331 | 331 |
| 332 // A datasource has been created for a new navigation. The given | 332 // A datasource has been created for a new navigation. The given |
| 333 // datasource will become the provisional datasource for the frame. | 333 // datasource will become the provisional datasource for the frame. |
| 334 virtual void didCreateDataSource(WebLocalFrame*, WebDataSource*) {} | 334 virtual void didCreateDataSource(WebLocalFrame*, WebDataSource*) {} |
| 335 | 335 |
| 336 // A new provisional load has been started. | 336 // A new provisional load has been started. |
| 337 virtual void didStartProvisionalLoad(WebLocalFrame* localFrame, | 337 virtual void didStartProvisionalLoad(WebLocalFrame* localFrame) {} |
| 338 double triggeringEventTime) {} | |
| 339 | 338 |
| 340 // The provisional load was redirected via a HTTP 3xx response. | 339 // The provisional load was redirected via a HTTP 3xx response. |
| 341 virtual void didReceiveServerRedirectForProvisionalLoad(WebLocalFrame*) {} | 340 virtual void didReceiveServerRedirectForProvisionalLoad(WebLocalFrame*) {} |
| 342 | 341 |
| 343 // The provisional load failed. The WebHistoryCommitType is the commit type | 342 // The provisional load failed. The WebHistoryCommitType is the commit type |
| 344 // that would have been used had the load succeeded. | 343 // that would have been used had the load succeeded. |
| 345 virtual void didFailProvisionalLoad(WebLocalFrame*, | 344 virtual void didFailProvisionalLoad(WebLocalFrame*, |
| 346 const WebURLError&, | 345 const WebURLError&, |
| 347 WebHistoryCommitType) {} | 346 WebHistoryCommitType) {} |
| 348 | 347 |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 // Overwrites the given URL to use an HTML5 embed if possible. | 750 // Overwrites the given URL to use an HTML5 embed if possible. |
| 752 // An empty URL is returned if the URL is not overriden. | 751 // An empty URL is returned if the URL is not overriden. |
| 753 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { | 752 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { |
| 754 return WebURL(); | 753 return WebURL(); |
| 755 } | 754 } |
| 756 }; | 755 }; |
| 757 | 756 |
| 758 } // namespace blink | 757 } // namespace blink |
| 759 | 758 |
| 760 #endif | 759 #endif |
| OLD | NEW |