OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 const NavigationPolicyInfo& info); | 363 const NavigationPolicyInfo& info); |
364 virtual blink::WebHistoryItem historyItemForNewChildFrame( | 364 virtual blink::WebHistoryItem historyItemForNewChildFrame( |
365 blink::WebFrame* frame); | 365 blink::WebFrame* frame); |
366 virtual void willSendSubmitEvent(blink::WebLocalFrame* frame, | 366 virtual void willSendSubmitEvent(blink::WebLocalFrame* frame, |
367 const blink::WebFormElement& form); | 367 const blink::WebFormElement& form); |
368 virtual void willSubmitForm(blink::WebLocalFrame* frame, | 368 virtual void willSubmitForm(blink::WebLocalFrame* frame, |
369 const blink::WebFormElement& form); | 369 const blink::WebFormElement& form); |
370 virtual void didCreateDataSource(blink::WebLocalFrame* frame, | 370 virtual void didCreateDataSource(blink::WebLocalFrame* frame, |
371 blink::WebDataSource* datasource); | 371 blink::WebDataSource* datasource); |
372 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame, | 372 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame, |
373 bool is_transition_navigation); | 373 bool is_transition_navigation, |
| 374 double triggering_event_time); |
374 virtual void didReceiveServerRedirectForProvisionalLoad( | 375 virtual void didReceiveServerRedirectForProvisionalLoad( |
375 blink::WebLocalFrame* frame); | 376 blink::WebLocalFrame* frame); |
376 virtual void didFailProvisionalLoad( | 377 virtual void didFailProvisionalLoad( |
377 blink::WebLocalFrame* frame, | 378 blink::WebLocalFrame* frame, |
378 const blink::WebURLError& error); | 379 const blink::WebURLError& error); |
379 virtual void didCommitProvisionalLoad( | 380 virtual void didCommitProvisionalLoad( |
380 blink::WebLocalFrame* frame, | 381 blink::WebLocalFrame* frame, |
381 const blink::WebHistoryItem& item, | 382 const blink::WebHistoryItem& item, |
382 blink::WebHistoryCommitType commit_type); | 383 blink::WebHistoryCommitType commit_type); |
383 virtual void didCreateNewDocument(blink::WebLocalFrame* frame); | 384 virtual void didCreateNewDocument(blink::WebLocalFrame* frame); |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 #endif | 828 #endif |
828 | 829 |
829 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 830 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
830 | 831 |
831 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 832 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
832 }; | 833 }; |
833 | 834 |
834 } // namespace content | 835 } // namespace content |
835 | 836 |
836 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 837 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |