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

Unified Diff: content/renderer/presentation/presentation_dispatcher.cc

Issue 2775963002: s/same_page/same_document for DidCommitProvisionalLoad method. (Closed)
Patch Set: Addressed review comment Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/presentation/presentation_dispatcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/presentation/presentation_dispatcher.cc
diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
index e1fc44ab90cab04bcc5485ebe1b24ae5c7e4c944..5c1e969ee2a202abf3d94b54efc9a56ed1d53a68 100644
--- a/content/renderer/presentation/presentation_dispatcher.cc
+++ b/content/renderer/presentation/presentation_dispatcher.cc
@@ -389,10 +389,10 @@ void PresentationDispatcher::setReceiver(
void PresentationDispatcher::DidCommitProvisionalLoad(
bool is_new_navigation,
- bool is_same_page_navigation) {
+ bool is_same_document_navigation) {
blink::WebFrame* frame = render_frame()->GetWebFrame();
// If not top-level navigation.
- if (frame->parent() || is_same_page_navigation)
+ if (frame->parent() || is_same_document_navigation)
return;
// Remove all pending send message requests.
« no previous file with comments | « content/renderer/presentation/presentation_dispatcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698