diff options
author | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-05 22:20:37 +0000 |
---|---|---|
committer | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-05 22:20:37 +0000 |
commit | 028053d4b37380bb1f71b610de096a1fb6adbd14 (patch) | |
tree | d3a6a842ceeeaa1873477fdf070c32b8eb1fcd9c /content/common/frame_messages.h | |
parent | 061d303b64a0b6645bf3d6290fb740fd782b1b30 (diff) | |
download | chromium_src-028053d4b37380bb1f71b610de096a1fb6adbd14.zip chromium_src-028053d4b37380bb1f71b610de096a1fb6adbd14.tar.gz chromium_src-028053d4b37380bb1f71b610de096a1fb6adbd14.tar.bz2 |
Moving DidFinishLoad from RenderView to RenderFrame.
BUG=304341
R=creis@chromium.org
Review URL: https://codereview.chromium.org/185993008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/frame_messages.h')
-rw-r--r-- | content/common/frame_messages.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h index a8a2898..31604c7 100644 --- a/content/common/frame_messages.h +++ b/content/common/frame_messages.h @@ -356,6 +356,11 @@ IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) // Requests that the given URL be opened in the specified manner. IPC_MESSAGE_ROUTED1(FrameHostMsg_OpenURL, FrameHostMsg_OpenURL_Params) +// Notifies the browser that a frame finished loading. +IPC_MESSAGE_ROUTED2(FrameHostMsg_DidFinishLoad, + GURL /* validated_url */, + bool /* is_main_frame */) + // Following message is used to communicate the values received by the // callback binding the JS to Cpp. // An instance of browser that has an automation host listening to it can |