| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 bool shouldReportDetailedMessageForSource( | 507 bool shouldReportDetailedMessageForSource( |
| 508 const blink::WebString& source) override; | 508 const blink::WebString& source) override; |
| 509 void didAddMessageToConsole(const blink::WebConsoleMessage& message, | 509 void didAddMessageToConsole(const blink::WebConsoleMessage& message, |
| 510 const blink::WebString& source_name, | 510 const blink::WebString& source_name, |
| 511 unsigned source_line, | 511 unsigned source_line, |
| 512 const blink::WebString& stack_trace) override; | 512 const blink::WebString& stack_trace) override; |
| 513 void loadURLExternally(const blink::WebURLRequest& request, | 513 void loadURLExternally(const blink::WebURLRequest& request, |
| 514 blink::WebNavigationPolicy policy, | 514 blink::WebNavigationPolicy policy, |
| 515 const blink::WebString& suggested_name, | 515 const blink::WebString& suggested_name, |
| 516 bool should_replace_current_entry) override; | 516 bool should_replace_current_entry) override; |
| 517 void loadErrorPage(int reason) override; |
| 517 blink::WebNavigationPolicy decidePolicyForNavigation( | 518 blink::WebNavigationPolicy decidePolicyForNavigation( |
| 518 const NavigationPolicyInfo& info) override; | 519 const NavigationPolicyInfo& info) override; |
| 519 blink::WebHistoryItem historyItemForNewChildFrame() override; | 520 blink::WebHistoryItem historyItemForNewChildFrame() override; |
| 520 void willSendSubmitEvent(const blink::WebFormElement& form) override; | 521 void willSendSubmitEvent(const blink::WebFormElement& form) override; |
| 521 void willSubmitForm(const blink::WebFormElement& form) override; | 522 void willSubmitForm(const blink::WebFormElement& form) override; |
| 522 void didCreateDataSource(blink::WebLocalFrame* frame, | 523 void didCreateDataSource(blink::WebLocalFrame* frame, |
| 523 blink::WebDataSource* datasource) override; | 524 blink::WebDataSource* datasource) override; |
| 524 void didStartProvisionalLoad(blink::WebLocalFrame* frame) override; | 525 void didStartProvisionalLoad(blink::WebLocalFrame* frame) override; |
| 525 void didReceiveServerRedirectForProvisionalLoad( | 526 void didReceiveServerRedirectForProvisionalLoad( |
| 526 blink::WebLocalFrame* frame) override; | 527 blink::WebLocalFrame* frame) override; |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 bool browser_side_navigation_pending_ = false; | 1341 bool browser_side_navigation_pending_ = false; |
| 1341 | 1342 |
| 1342 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1343 | 1344 |
| 1344 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1345 }; | 1346 }; |
| 1346 | 1347 |
| 1347 } // namespace content | 1348 } // namespace content |
| 1348 | 1349 |
| 1349 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |