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

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

Issue 2661743002: PlzNavigate: Invoke didStartProvisionalLoad() when the renderer initiates a navigation in startLoad( (Closed)
Patch Set: Remove CHECK for redirect chain as the redirects may not be populated for provisional loads for ren… Created 3 years, 10 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 | « content/public/renderer/render_frame_observer.h ('k') | 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 const blink::WebString& suggested_name, 542 const blink::WebString& suggested_name,
543 bool should_replace_current_entry) override; 543 bool should_replace_current_entry) override;
544 void loadErrorPage(int reason) override; 544 void loadErrorPage(int reason) override;
545 blink::WebNavigationPolicy decidePolicyForNavigation( 545 blink::WebNavigationPolicy decidePolicyForNavigation(
546 const NavigationPolicyInfo& info) override; 546 const NavigationPolicyInfo& info) override;
547 blink::WebHistoryItem historyItemForNewChildFrame() override; 547 blink::WebHistoryItem historyItemForNewChildFrame() override;
548 void willSendSubmitEvent(const blink::WebFormElement& form) override; 548 void willSendSubmitEvent(const blink::WebFormElement& form) override;
549 void willSubmitForm(const blink::WebFormElement& form) override; 549 void willSubmitForm(const blink::WebFormElement& form) override;
550 void didCreateDataSource(blink::WebLocalFrame* frame, 550 void didCreateDataSource(blink::WebLocalFrame* frame,
551 blink::WebDataSource* datasource) override; 551 blink::WebDataSource* datasource) override;
552 void didStartProvisionalLoad(blink::WebLocalFrame* frame) override; 552 void didStartProvisionalLoad(blink::WebDataSource* data_source) override;
553 void didReceiveServerRedirectForProvisionalLoad( 553 void didReceiveServerRedirectForProvisionalLoad(
554 blink::WebLocalFrame* frame) override; 554 blink::WebLocalFrame* frame) override;
555 void didFailProvisionalLoad(blink::WebLocalFrame* frame, 555 void didFailProvisionalLoad(blink::WebLocalFrame* frame,
556 const blink::WebURLError& error, 556 const blink::WebURLError& error,
557 blink::WebHistoryCommitType commit_type) override; 557 blink::WebHistoryCommitType commit_type) override;
558 void didCommitProvisionalLoad( 558 void didCommitProvisionalLoad(
559 blink::WebLocalFrame* frame, 559 blink::WebLocalFrame* frame,
560 const blink::WebHistoryItem& item, 560 const blink::WebHistoryItem& item,
561 blink::WebHistoryCommitType commit_type) override; 561 blink::WebHistoryCommitType commit_type) override;
562 void didCreateNewDocument(blink::WebLocalFrame* frame) override; 562 void didCreateNewDocument(blink::WebLocalFrame* frame) override;
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 int enabled_bindings_ = 0; 1391 int enabled_bindings_ = 0;
1392 1392
1393 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1393 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1394 1394
1395 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1395 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1396 }; 1396 };
1397 1397
1398 } // namespace content 1398 } // namespace content
1399 1399
1400 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1400 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_frame_observer.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698