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

Unified Diff: content/public/browser/navigation_handle.h

Issue 1312213010: PageLoadMetrics renderer and browser implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review changes + formatting Created 5 years, 3 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/browser/frame_host/navigator_impl.cc ('k') | ipc/ipc_message_start.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/navigation_handle.h
diff --git a/content/public/browser/navigation_handle.h b/content/public/browser/navigation_handle.h
index 49d0884de43256e204ad3159903db42e889d1af6..ccf4c7a2e4150ee0155ebdcd3c0de1337116d368 100644
--- a/content/public/browser/navigation_handle.h
+++ b/content/public/browser/navigation_handle.h
@@ -28,6 +28,11 @@ class CONTENT_EXPORT NavigationHandle {
// Whether the navigation is taking place in the main frame or in a subframe.
virtual bool IsInMainFrame() const = 0;
+ // Whether the navigation happened in the same page. This is only known
+ // after the navigation has committed. It is an error to call this method
+ // before the navigation has committed.
+ virtual bool IsSamePage() const = 0;
clamy 2015/09/11 14:44:14 This came up in another review, this method should
+
// Whether the navigation has successfully committed a document.
virtual bool HasCommittedDocument() const = 0;
« no previous file with comments | « content/browser/frame_host/navigator_impl.cc ('k') | ipc/ipc_message_start.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698