| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 blink::WebNavigationPolicy policy, | 520 blink::WebNavigationPolicy policy, |
| 521 const blink::WebString& suggested_name, | 521 const blink::WebString& suggested_name, |
| 522 bool should_replace_current_entry) override; | 522 bool should_replace_current_entry) override; |
| 523 blink::WebNavigationPolicy decidePolicyForNavigation( | 523 blink::WebNavigationPolicy decidePolicyForNavigation( |
| 524 const NavigationPolicyInfo& info) override; | 524 const NavigationPolicyInfo& info) override; |
| 525 blink::WebHistoryItem historyItemForNewChildFrame() override; | 525 blink::WebHistoryItem historyItemForNewChildFrame() override; |
| 526 void willSendSubmitEvent(const blink::WebFormElement& form) override; | 526 void willSendSubmitEvent(const blink::WebFormElement& form) override; |
| 527 void willSubmitForm(const blink::WebFormElement& form) override; | 527 void willSubmitForm(const blink::WebFormElement& form) override; |
| 528 void didCreateDataSource(blink::WebLocalFrame* frame, | 528 void didCreateDataSource(blink::WebLocalFrame* frame, |
| 529 blink::WebDataSource* datasource) override; | 529 blink::WebDataSource* datasource) override; |
| 530 void didStartProvisionalLoad(blink::WebLocalFrame* frame, | 530 void didStartProvisionalLoad(blink::WebLocalFrame* frame) override; |
| 531 double triggering_event_time) override; | |
| 532 void didReceiveServerRedirectForProvisionalLoad( | 531 void didReceiveServerRedirectForProvisionalLoad( |
| 533 blink::WebLocalFrame* frame) override; | 532 blink::WebLocalFrame* frame) override; |
| 534 void didFailProvisionalLoad(blink::WebLocalFrame* frame, | 533 void didFailProvisionalLoad(blink::WebLocalFrame* frame, |
| 535 const blink::WebURLError& error, | 534 const blink::WebURLError& error, |
| 536 blink::WebHistoryCommitType commit_type) override; | 535 blink::WebHistoryCommitType commit_type) override; |
| 537 void didCommitProvisionalLoad( | 536 void didCommitProvisionalLoad( |
| 538 blink::WebLocalFrame* frame, | 537 blink::WebLocalFrame* frame, |
| 539 const blink::WebHistoryItem& item, | 538 const blink::WebHistoryItem& item, |
| 540 blink::WebHistoryCommitType commit_type) override; | 539 blink::WebHistoryCommitType commit_type) override; |
| 541 void didCreateNewDocument(blink::WebLocalFrame* frame) override; | 540 void didCreateNewDocument(blink::WebLocalFrame* frame) override; |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 bool browser_side_navigation_pending_ = false; | 1340 bool browser_side_navigation_pending_ = false; |
| 1342 | 1341 |
| 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1342 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1344 | 1343 |
| 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1344 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1346 }; | 1345 }; |
| 1347 | 1346 |
| 1348 } // namespace content | 1347 } // namespace content |
| 1349 | 1348 |
| 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1349 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |