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

Unified Diff: content/common/frame_messages.h

Issue 263973003: Move LoadProgressTracker to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: final comment Created 6 years, 7 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/web_contents/web_contents_impl_browsertest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/frame_messages.h
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
index dadb8898de4dc6d7cc302546f41c3df86374fd7d..2fd20c73e8fe3aa5399080592840662843f2d24d 100644
--- a/content/common/frame_messages.h
+++ b/content/common/frame_messages.h
@@ -414,18 +414,19 @@ IPC_MESSAGE_ROUTED3(FrameHostMsg_DidFailLoadWithError,
int /* error_code */,
base::string16 /* error_description */)
-// Sent when the renderer starts loading the page. This corresponds to
-// Blink's notion of the throbber starting. Note that sometimes you may get
-// duplicates of these during a single load.
-// |to_different_document| will be true unless the load is a fragment
-// navigation, or triggered by history.pushState/replaceState.
+// Sent when the renderer starts loading the page. |to_different_document| will
+// be true unless the load is a fragment navigation, or triggered by
+// history.pushState/replaceState.
IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading,
bool /* to_different_document */)
-// Sent when the renderer is done loading a page. This corresponds to Blink's
-// notion of the throbber stopping.
+// Sent when the renderer is done loading a page.
IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
+// Sent when the renderer changed the progress of a load.
+IPC_MESSAGE_ROUTED1(FrameHostMsg_DidChangeLoadProgress,
+ double /* load_progress */)
+
// Requests that the given URL be opened in the specified manner.
IPC_MESSAGE_ROUTED1(FrameHostMsg_OpenURL, FrameHostMsg_OpenURL_Params)
« no previous file with comments | « content/browser/web_contents/web_contents_impl_browsertest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698