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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 virtual void willSendSubmitEvent(WebLocalFrame*, const WebFormElement&) { } | 249 virtual void willSendSubmitEvent(WebLocalFrame*, const WebFormElement&) { } |
250 | 250 |
251 // A form submission is about to occur. | 251 // A form submission is about to occur. |
252 virtual void willSubmitForm(WebLocalFrame*, const WebFormElement&) { } | 252 virtual void willSubmitForm(WebLocalFrame*, const WebFormElement&) { } |
253 | 253 |
254 // A datasource has been created for a new navigation. The given | 254 // A datasource has been created for a new navigation. The given |
255 // datasource will become the provisional datasource for the frame. | 255 // datasource will become the provisional datasource for the frame. |
256 virtual void didCreateDataSource(WebLocalFrame*, WebDataSource*) { } | 256 virtual void didCreateDataSource(WebLocalFrame*, WebDataSource*) { } |
257 | 257 |
258 // A new provisional load has been started. | 258 // A new provisional load has been started. |
259 virtual void didStartProvisionalLoad(WebLocalFrame* localFrame, bool isTrans
itionNavigation, double triggeringEventTime) { didStartProvisionalLoad(localFram
e, isTransitionNavigation); } | 259 virtual void didStartProvisionalLoad(WebLocalFrame* localFrame, bool isTrans
itionNavigation, |
260 // DEPRECATED, to be removed once RenderFrameImpl implements the 3-parameter
variant. | 260 double triggeringEventTime) { } |
261 virtual void didStartProvisionalLoad(WebLocalFrame* localFrame, bool isTrans
itionNavigation) { } | |
262 | 261 |
263 // The provisional load was redirected via a HTTP 3xx response. | 262 // The provisional load was redirected via a HTTP 3xx response. |
264 virtual void didReceiveServerRedirectForProvisionalLoad(WebLocalFrame*) { } | 263 virtual void didReceiveServerRedirectForProvisionalLoad(WebLocalFrame*) { } |
265 | 264 |
266 // The provisional load failed. | 265 // The provisional load failed. |
267 virtual void didFailProvisionalLoad(WebLocalFrame*, const WebURLError&) { } | 266 virtual void didFailProvisionalLoad(WebLocalFrame*, const WebURLError&) { } |
268 | 267 |
269 // The provisional datasource is now committed. The first part of the | 268 // The provisional datasource is now committed. The first part of the |
270 // response body has been received, and the encoding of the response | 269 // response body has been received, and the encoding of the response |
271 // body is known. | 270 // body is known. |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 // Access the embedder API for speech recognition services. | 600 // Access the embedder API for speech recognition services. |
602 virtual WebSpeechRecognizer* speechRecognizer() { return 0; } | 601 virtual WebSpeechRecognizer* speechRecognizer() { return 0; } |
603 | 602 |
604 protected: | 603 protected: |
605 virtual ~WebFrameClient() { } | 604 virtual ~WebFrameClient() { } |
606 }; | 605 }; |
607 | 606 |
608 } // namespace blink | 607 } // namespace blink |
609 | 608 |
610 #endif | 609 #endif |
OLD | NEW |