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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 bool shouldReportDetailedMessageForSource( | 511 bool shouldReportDetailedMessageForSource( |
512 const blink::WebString& source) override; | 512 const blink::WebString& source) override; |
513 void didAddMessageToConsole(const blink::WebConsoleMessage& message, | 513 void didAddMessageToConsole(const blink::WebConsoleMessage& message, |
514 const blink::WebString& source_name, | 514 const blink::WebString& source_name, |
515 unsigned source_line, | 515 unsigned source_line, |
516 const blink::WebString& stack_trace) override; | 516 const blink::WebString& stack_trace) override; |
517 void loadURLExternally(const blink::WebURLRequest& request, | 517 void loadURLExternally(const blink::WebURLRequest& request, |
518 blink::WebNavigationPolicy policy, | 518 blink::WebNavigationPolicy policy, |
519 const blink::WebString& suggested_name, | 519 const blink::WebString& suggested_name, |
520 bool should_replace_current_entry) override; | 520 bool should_replace_current_entry) override; |
| 521 void loadErrorPage(int reason) override; |
521 blink::WebNavigationPolicy decidePolicyForNavigation( | 522 blink::WebNavigationPolicy decidePolicyForNavigation( |
522 const NavigationPolicyInfo& info) override; | 523 const NavigationPolicyInfo& info) override; |
523 blink::WebHistoryItem historyItemForNewChildFrame() override; | 524 blink::WebHistoryItem historyItemForNewChildFrame() override; |
524 void willSendSubmitEvent(const blink::WebFormElement& form) override; | 525 void willSendSubmitEvent(const blink::WebFormElement& form) override; |
525 void willSubmitForm(const blink::WebFormElement& form) override; | 526 void willSubmitForm(const blink::WebFormElement& form) override; |
526 void didCreateDataSource(blink::WebLocalFrame* frame, | 527 void didCreateDataSource(blink::WebLocalFrame* frame, |
527 blink::WebDataSource* datasource) override; | 528 blink::WebDataSource* datasource) override; |
528 void didStartProvisionalLoad(blink::WebLocalFrame* frame, | 529 void didStartProvisionalLoad(blink::WebLocalFrame* frame, |
529 double triggering_event_time) override; | 530 double triggering_event_time) override; |
530 void didReceiveServerRedirectForProvisionalLoad( | 531 void didReceiveServerRedirectForProvisionalLoad( |
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1331 bool name_changed_before_first_commit_ = false; | 1332 bool name_changed_before_first_commit_ = false; |
1332 | 1333 |
1333 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1334 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1334 | 1335 |
1335 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1336 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1336 }; | 1337 }; |
1337 | 1338 |
1338 } // namespace content | 1339 } // namespace content |
1339 | 1340 |
1340 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1341 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |