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

Unified Diff: extensions/browser/guest_view/web_view/web_view_guest.cc

Issue 2716493004: Renamed NavigationHandle::IsSamePage to NavigationHandle::IsSameDocument (Closed)
Patch Set: Rebased 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 | « extensions/browser/guest_view/mime_handler_view/mime_handler_stream_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/guest_view/web_view/web_view_guest.cc
diff --git a/extensions/browser/guest_view/web_view/web_view_guest.cc b/extensions/browser/guest_view/web_view/web_view_guest.cc
index e1277745894078404c981a4d4b0b1577050a4b8b..9f352a4116fb80aa6deb13423497d0a353cac8db 100644
--- a/extensions/browser/guest_view/web_view/web_view_guest.cc
+++ b/extensions/browser/guest_view/web_view/web_view_guest.cc
@@ -891,8 +891,8 @@ void WebViewGuest::DidFinishNavigation(
void WebViewGuest::DidStartNavigation(
content::NavigationHandle* navigation_handle) {
- // loadStart shouldn't be sent for same page navigations.
- if (navigation_handle->IsSamePage())
+ // loadStart shouldn't be sent for same document navigations.
+ if (navigation_handle->IsSameDocument())
return;
std::unique_ptr<base::DictionaryValue> args(new base::DictionaryValue());
« no previous file with comments | « extensions/browser/guest_view/mime_handler_view/mime_handler_stream_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698