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

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: ...and remove from WebContentsObserver. 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 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 string16 /* out - This is ignored.*/) 1800 string16 /* out - This is ignored.*/)
1801 1801
1802 // Sent when the renderer process is done processing a DataReceived 1802 // Sent when the renderer process is done processing a DataReceived
1803 // message. 1803 // message.
1804 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK, 1804 IPC_MESSAGE_ROUTED1(ViewHostMsg_DataReceived_ACK,
1805 int /* request_id */) 1805 int /* request_id */)
1806 1806
1807 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS, 1807 IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS,
1808 FilePath /* path */) 1808 FilePath /* path */)
1809 1809
1810 // Sent when a provisional load on the main frame redirects.
1811 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad,
1812 int /* page_id */,
1813 GURL /* opener url if present, else empty */,
1814 GURL /* last url */,
1815 GURL /* url redirected to */)
1816
1817 // Sent when the renderer changes the zoom level for a particular url, so the 1810 // Sent when the renderer changes the zoom level for a particular url, so the
1818 // browser can update its records. If remember is true, then url is used to 1811 // browser can update its records. If remember is true, then url is used to
1819 // update the zoom level for all pages in that site. Otherwise, the render 1812 // update the zoom level for all pages in that site. Otherwise, the render
1820 // view's id is used so that only the menu is updated. 1813 // view's id is used so that only the menu is updated.
1821 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL, 1814 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidZoomURL,
1822 double /* zoom_level */, 1815 double /* zoom_level */,
1823 bool /* remember */, 1816 bool /* remember */,
1824 GURL /* url */) 1817 GURL /* url */)
1825 1818
1826 // Updates the minimum/maximum allowed zoom percent for this tab from the 1819 // Updates the minimum/maximum allowed zoom percent for this tab from the
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
2027 int /* automation_id */) 2020 int /* automation_id */)
2028 2021
2029 // Sent to the browser when the renderer detects it is blocked on a pepper 2022 // Sent to the browser when the renderer detects it is blocked on a pepper
2030 // plugin message for too long. This is also sent when it becomes unhung 2023 // plugin message for too long. This is also sent when it becomes unhung
2031 // (according to the value of is_hung). The browser can give the user the 2024 // (according to the value of is_hung). The browser can give the user the
2032 // option of killing the plugin. 2025 // option of killing the plugin.
2033 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2026 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2034 int /* plugin_child_id */, 2027 int /* plugin_child_id */,
2035 FilePath /* path */, 2028 FilePath /* path */,
2036 bool /* is_hung */) 2029 bool /* is_hung */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698