Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2779893006: Remove WebLocalFrame* from didReceiveServerRedirectForProvisionalLoad (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 void loadErrorPage(int reason) override; 551 void loadErrorPage(int reason) override;
552 blink::WebNavigationPolicy decidePolicyForNavigation( 552 blink::WebNavigationPolicy decidePolicyForNavigation(
553 const NavigationPolicyInfo& info) override; 553 const NavigationPolicyInfo& info) override;
554 blink::WebHistoryItem historyItemForNewChildFrame() override; 554 blink::WebHistoryItem historyItemForNewChildFrame() override;
555 void willSendSubmitEvent(const blink::WebFormElement& form) override; 555 void willSendSubmitEvent(const blink::WebFormElement& form) override;
556 void willSubmitForm(const blink::WebFormElement& form) override; 556 void willSubmitForm(const blink::WebFormElement& form) override;
557 void didCreateDataSource(blink::WebLocalFrame* frame, 557 void didCreateDataSource(blink::WebLocalFrame* frame,
558 blink::WebDataSource* datasource) override; 558 blink::WebDataSource* datasource) override;
559 void didStartProvisionalLoad(blink::WebDataSource* data_source, 559 void didStartProvisionalLoad(blink::WebDataSource* data_source,
560 blink::WebURLRequest& request) override; 560 blink::WebURLRequest& request) override;
561 void didReceiveServerRedirectForProvisionalLoad( 561 void didReceiveServerRedirectForProvisionalLoad() override;
562 blink::WebLocalFrame* frame) override;
563 void didFailProvisionalLoad(blink::WebLocalFrame* frame, 562 void didFailProvisionalLoad(blink::WebLocalFrame* frame,
564 const blink::WebURLError& error, 563 const blink::WebURLError& error,
565 blink::WebHistoryCommitType commit_type) override; 564 blink::WebHistoryCommitType commit_type) override;
566 void didCommitProvisionalLoad( 565 void didCommitProvisionalLoad(
567 blink::WebLocalFrame* frame, 566 blink::WebLocalFrame* frame,
568 const blink::WebHistoryItem& item, 567 const blink::WebHistoryItem& item,
569 blink::WebHistoryCommitType commit_type) override; 568 blink::WebHistoryCommitType commit_type) override;
570 void didCreateNewDocument(blink::WebLocalFrame* frame) override; 569 void didCreateNewDocument(blink::WebLocalFrame* frame) override;
571 void didClearWindowObject(blink::WebLocalFrame* frame) override; 570 void didClearWindowObject(blink::WebLocalFrame* frame) override;
572 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; 571 void didCreateDocumentElement(blink::WebLocalFrame* frame) override;
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; 1422 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_;
1424 1423
1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1424 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1426 1425
1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1426 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1428 }; 1427 };
1429 1428
1430 } // namespace content 1429 } // namespace content
1431 1430
1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1431 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698