| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 const blink::WebString& suggested_name, | 542 const blink::WebString& suggested_name, |
| 543 bool should_replace_current_entry) override; | 543 bool should_replace_current_entry) override; |
| 544 void loadErrorPage(int reason) override; | 544 void loadErrorPage(int reason) override; |
| 545 blink::WebNavigationPolicy decidePolicyForNavigation( | 545 blink::WebNavigationPolicy decidePolicyForNavigation( |
| 546 const NavigationPolicyInfo& info) override; | 546 const NavigationPolicyInfo& info) override; |
| 547 blink::WebHistoryItem historyItemForNewChildFrame() override; | 547 blink::WebHistoryItem historyItemForNewChildFrame() override; |
| 548 void willSendSubmitEvent(const blink::WebFormElement& form) override; | 548 void willSendSubmitEvent(const blink::WebFormElement& form) override; |
| 549 void willSubmitForm(const blink::WebFormElement& form) override; | 549 void willSubmitForm(const blink::WebFormElement& form) override; |
| 550 void didCreateDataSource(blink::WebLocalFrame* frame, | 550 void didCreateDataSource(blink::WebLocalFrame* frame, |
| 551 blink::WebDataSource* datasource) override; | 551 blink::WebDataSource* datasource) override; |
| 552 void didStartProvisionalLoad(blink::WebLocalFrame* frame) override; | 552 void didStartProvisionalLoad(blink::WebLocalFrame* frame, |
| 553 const blink::WebURLRequest& request) override; |
| 553 void didReceiveServerRedirectForProvisionalLoad( | 554 void didReceiveServerRedirectForProvisionalLoad( |
| 554 blink::WebLocalFrame* frame) override; | 555 blink::WebLocalFrame* frame) override; |
| 555 void didFailProvisionalLoad(blink::WebLocalFrame* frame, | 556 void didFailProvisionalLoad(blink::WebLocalFrame* frame, |
| 556 const blink::WebURLError& error, | 557 const blink::WebURLError& error, |
| 557 blink::WebHistoryCommitType commit_type) override; | 558 blink::WebHistoryCommitType commit_type) override; |
| 558 void didCommitProvisionalLoad( | 559 void didCommitProvisionalLoad( |
| 559 blink::WebLocalFrame* frame, | 560 blink::WebLocalFrame* frame, |
| 560 const blink::WebHistoryItem& item, | 561 const blink::WebHistoryItem& item, |
| 561 blink::WebHistoryCommitType commit_type) override; | 562 blink::WebHistoryCommitType commit_type) override; |
| 562 void didCreateNewDocument(blink::WebLocalFrame* frame) override; | 563 void didCreateNewDocument(blink::WebLocalFrame* frame) override; |
| (...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 int enabled_bindings_ = 0; | 1392 int enabled_bindings_ = 0; |
| 1392 | 1393 |
| 1393 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1394 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1394 | 1395 |
| 1395 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1396 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1396 }; | 1397 }; |
| 1397 | 1398 |
| 1398 } // namespace content | 1399 } // namespace content |
| 1399 | 1400 |
| 1400 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1401 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |