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

Side by Side Diff: content/common/view_messages.h

Issue 10316020: Remove WebContentsImpl::OnDidRedirectProvisionalLoad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Listen for RESOURCE_RECEIVED_REDIRET in PrerenderTabHelper Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 1816 matching lines...) Expand 10 before | Expand all | Expand 10 after
1827 string16 /* out - This is ignored.*/) 1827 string16 /* out - This is ignored.*/)
1828 1828
1829 // Sent when the renderer process is done processing a DataReceived 1829 // Sent when the renderer process is done processing a DataReceived
1830 // message. 1830 // message.
1831 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, 1831 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK,
1832 int /* request_id */) 1832 int /* request_id */)
1833 1833
1834 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS, 1834 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS,
1835 FilePath /* path */) 1835 FilePath /* path */)
1836 1836
1837 // Sent when a provisional load on the main frame redirects.
1838 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad,
1839 int /* page_id */,
1840 GURL /* opener url if present, else empty */,
1841 GURL /* last url */,
1842 GURL /* url redirected to */)
1843
1844 // Sent when the renderer changes the zoom level for a particular url, so the 1837 // Sent when the renderer changes the zoom level for a particular url, so the
1845 // browser can update its records. If remember is true, then url is used to 1838 // browser can update its records. If remember is true, then url is used to
1846 // update the zoom level for all pages in that site. Otherwise, the render 1839 // update the zoom level for all pages in that site. Otherwise, the render
1847 // view's id is used so that only the menu is updated. 1840 // view's id is used so that only the menu is updated.
1848 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, 1841 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL,
1849 double /* zoom_level */, 1842 double /* zoom_level */,
1850 bool /* remember */, 1843 bool /* remember */,
1851 GURL /* url */) 1844 GURL /* url */)
1852 1845
1853 // Updates the minimum/maximum allowed zoom percent for this tab from the 1846 // Updates the minimum/maximum allowed zoom percent for this tab from the
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2059 // (according to the value of is_hung). The browser can give the user the 2052 // (according to the value of is_hung). The browser can give the user the
2060 // option of killing the plugin. 2053 // option of killing the plugin.
2061 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2054 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2062 int /* plugin_child_id */, 2055 int /* plugin_child_id */,
2063 FilePath /* path */, 2056 FilePath /* path */,
2064 bool /* is_hung */) 2057 bool /* is_hung */)
2065 2058
2066 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2059 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2067 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2060 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2068 int /* orientation */) 2061 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698