| 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 void loadURLExternally(const blink::WebURLRequest& request, | 480 void loadURLExternally(const blink::WebURLRequest& request, |
| 481 blink::WebNavigationPolicy policy, | 481 blink::WebNavigationPolicy policy, |
| 482 const blink::WebString& suggested_name, | 482 const blink::WebString& suggested_name, |
| 483 bool should_replace_current_entry) override; | 483 bool should_replace_current_entry) override; |
| 484 blink::WebNavigationPolicy decidePolicyForNavigation( | 484 blink::WebNavigationPolicy decidePolicyForNavigation( |
| 485 const NavigationPolicyInfo& info) override; | 485 const NavigationPolicyInfo& info) override; |
| 486 blink::WebHistoryItem historyItemForNewChildFrame() override; | 486 blink::WebHistoryItem historyItemForNewChildFrame() override; |
| 487 void willSendSubmitEvent(const blink::WebFormElement& form) override; | 487 void willSendSubmitEvent(const blink::WebFormElement& form) override; |
| 488 void willSubmitForm(const blink::WebFormElement& form) override; | 488 void willSubmitForm(const blink::WebFormElement& form) override; |
| 489 void didCreateDataSource(blink::WebLocalFrame* frame, | 489 void didCreateDataSource(blink::WebLocalFrame* frame, |
| 490 blink::WebDataSource* datasource) override; | 490 blink::WebDataSource* datasource, |
| 491 int initiator) override; |
| 491 void didStartProvisionalLoad(blink::WebLocalFrame* frame, | 492 void didStartProvisionalLoad(blink::WebLocalFrame* frame, |
| 492 double triggering_event_time) override; | 493 double triggering_event_time) override; |
| 493 void didReceiveServerRedirectForProvisionalLoad( | 494 void didReceiveServerRedirectForProvisionalLoad( |
| 494 blink::WebLocalFrame* frame) override; | 495 blink::WebLocalFrame* frame) override; |
| 495 void didFailProvisionalLoad(blink::WebLocalFrame* frame, | 496 void didFailProvisionalLoad(blink::WebLocalFrame* frame, |
| 496 const blink::WebURLError& error, | 497 const blink::WebURLError& error, |
| 497 blink::WebHistoryCommitType commit_type) override; | 498 blink::WebHistoryCommitType commit_type) override; |
| 498 void didCommitProvisionalLoad( | 499 void didCommitProvisionalLoad( |
| 499 blink::WebLocalFrame* frame, | 500 blink::WebLocalFrame* frame, |
| 500 const blink::WebHistoryItem& item, | 501 const blink::WebHistoryItem& item, |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1251 #endif | 1252 #endif |
| 1252 | 1253 |
| 1253 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1254 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1254 | 1255 |
| 1255 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1256 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1256 }; | 1257 }; |
| 1257 | 1258 |
| 1258 } // namespace content | 1259 } // namespace content |
| 1259 | 1260 |
| 1260 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1261 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |