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

Unified Diff: chrome/common/render_messages_internal.h

Issue 100033: Synchronously update the loading state when a load starts so that the UI will... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 14707)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -667,11 +667,14 @@
// action (e.g. when the user is hovering over a link).
IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateTargetURL, int32, GURL)
- // Sent when the renderer is loading a frame
- IPC_MESSAGE_ROUTED1(ViewHostMsg_DidStartLoading, int32)
+ // Sent when the renderer starts loading the page. This corresponds to
+ // WebKit's notion of the throbber starting. Note that sometimes you may get
+ // duplicates of these during a single load.
+ IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStartLoading)
- // Sent when the renderer is done loading a frame
- IPC_MESSAGE_ROUTED1(ViewHostMsg_DidStopLoading, int32)
+ // Sent when the renderer is done loading a page. This corresponds to WebKit's
+ // noption of the throbber stopping.
+ IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopLoading)
// Sent when the renderer loads a resource from its memory cache.
// The security info is non empty if the resource was originally loaded over
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698