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

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: rebase] Created 8 years, 6 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 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1858 string16 /* in - alert message */, 1858 string16 /* in - alert message */,
1859 bool /* in - is a reload */, 1859 bool /* in - is a reload */,
1860 bool /* out - success */, 1860 bool /* out - success */,
1861 string16 /* out - This is ignored.*/) 1861 string16 /* out - This is ignored.*/)
1862 1862
1863 // Sent when the renderer process is done processing a DataReceived 1863 // Sent when the renderer process is done processing a DataReceived
1864 // message. 1864 // message.
1865 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, 1865 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK,
1866 int /* request_id */) 1866 int /* request_id */)
1867 1867
1868 // Sent when a provisional load on the main frame redirects.
1869 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad,
1870 int /* page_id */,
1871 GURL /* opener url if present, else empty */,
1872 GURL /* last url */,
1873 GURL /* url redirected to */)
1874
1875 // Sent when the renderer changes the zoom level for a particular url, so the 1868 // Sent when the renderer changes the zoom level for a particular url, so the
1876 // browser can update its records. If remember is true, then url is used to 1869 // browser can update its records. If remember is true, then url is used to
1877 // update the zoom level for all pages in that site. Otherwise, the render 1870 // update the zoom level for all pages in that site. Otherwise, the render
1878 // view's id is used so that only the menu is updated. 1871 // view's id is used so that only the menu is updated.
1879 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, 1872 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL,
1880 double /* zoom_level */, 1873 double /* zoom_level */,
1881 bool /* remember */, 1874 bool /* remember */,
1882 GURL /* url */) 1875 GURL /* url */)
1883 1876
1884 // Updates the minimum/maximum allowed zoom percent for this tab from the 1877 // Updates the minimum/maximum allowed zoom percent for this tab from the
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
2096 // (according to the value of is_hung). The browser can give the user the 2089 // (according to the value of is_hung). The browser can give the user the
2097 // option of killing the plugin. 2090 // option of killing the plugin.
2098 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2091 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2099 int /* plugin_child_id */, 2092 int /* plugin_child_id */,
2100 FilePath /* path */, 2093 FilePath /* path */,
2101 bool /* is_hung */) 2094 bool /* is_hung */)
2102 2095
2103 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2096 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2104 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2097 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2105 int /* orientation */) 2098 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698