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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 const blink::WebString& source_name, | 442 const blink::WebString& source_name, |
443 unsigned source_line, | 443 unsigned source_line, |
444 const blink::WebString& stack_trace) override; | 444 const blink::WebString& stack_trace) override; |
445 void loadURLExternally(const blink::WebURLRequest& request, | 445 void loadURLExternally(const blink::WebURLRequest& request, |
446 blink::WebNavigationPolicy policy, | 446 blink::WebNavigationPolicy policy, |
447 const blink::WebString& suggested_name, | 447 const blink::WebString& suggested_name, |
448 bool should_replace_current_entry) override; | 448 bool should_replace_current_entry) override; |
449 blink::WebNavigationPolicy decidePolicyForNavigation( | 449 blink::WebNavigationPolicy decidePolicyForNavigation( |
450 const NavigationPolicyInfo& info) override; | 450 const NavigationPolicyInfo& info) override; |
451 blink::WebHistoryItem historyItemForNewChildFrame( | 451 blink::WebHistoryItem historyItemForNewChildFrame( |
452 blink::WebFrame* frame) override; | 452 bool* should_load_request) override; |
453 void willSendSubmitEvent(blink::WebLocalFrame* frame, | 453 void willSendSubmitEvent(blink::WebLocalFrame* frame, |
454 const blink::WebFormElement& form) override; | 454 const blink::WebFormElement& form) override; |
455 void willSubmitForm(blink::WebLocalFrame* frame, | 455 void willSubmitForm(blink::WebLocalFrame* frame, |
456 const blink::WebFormElement& form) override; | 456 const blink::WebFormElement& form) override; |
457 void didCreateDataSource(blink::WebLocalFrame* frame, | 457 void didCreateDataSource(blink::WebLocalFrame* frame, |
458 blink::WebDataSource* datasource) override; | 458 blink::WebDataSource* datasource) override; |
459 void didStartProvisionalLoad(blink::WebLocalFrame* frame, | 459 void didStartProvisionalLoad(blink::WebLocalFrame* frame, |
460 double triggering_event_time) override; | 460 double triggering_event_time) override; |
461 void didReceiveServerRedirectForProvisionalLoad( | 461 void didReceiveServerRedirectForProvisionalLoad( |
462 blink::WebLocalFrame* frame) override; | 462 blink::WebLocalFrame* frame) override; |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1102 #endif | 1102 #endif |
1103 | 1103 |
1104 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1104 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1105 | 1105 |
1106 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1106 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1107 }; | 1107 }; |
1108 | 1108 |
1109 } // namespace content | 1109 } // namespace content |
1110 | 1110 |
1111 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1111 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |