summaryrefslogtreecommitdiffstats
path: root/android_webview/common
diff options
context:
space:
mode:
authorgsennton <gsennton@chromium.org>2015-11-09 16:49:43 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-10 00:50:43 +0000
commitbae3ff13e6959b713b872df3c4a734d6a1ea01ad (patch)
tree0a5d1c77e8f45253e9cb69efe568b349b58db888 /android_webview/common
parent839f73c696d017638d755ddb2fec18ee839e06ea (diff)
downloadchromium_src-bae3ff13e6959b713b872df3c4a734d6a1ea01ad.zip
chromium_src-bae3ff13e6959b713b872df3c4a734d6a1ea01ad.tar.gz
chromium_src-bae3ff13e6959b713b872df3c4a734d6a1ea01ad.tar.bz2
Reland "Use resource throttle to implement shouldOverrideUrlLoading, core change"
Now that https://codereview.chromium.org/1381003004/ has landed we can reland this patch since we now receive a didFinishLoad callback when the current navigation finishes even in the case where a new navigation has reached a provisional state. This reverts commit e5c3091df04749b232359b6ef22938006af840d5. TBR=palmer@chromium.org,jam@chromium.org BUG=325351 Review URL: https://codereview.chromium.org/1424263003 Cr-Commit-Position: refs/heads/master@{#358719}
Diffstat (limited to 'android_webview/common')
-rw-r--r--android_webview/common/render_view_messages.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/android_webview/common/render_view_messages.h b/android_webview/common/render_view_messages.h
index 24df3cd..4c42f3d 100644
--- a/android_webview/common/render_view_messages.h
+++ b/android_webview/common/render_view_messages.h
@@ -100,20 +100,6 @@ IPC_MESSAGE_ROUTED1(AwViewHostMsg_UpdateHitTestData,
IPC_MESSAGE_ROUTED1(AwViewHostMsg_OnContentsSizeChanged,
gfx::Size /* contents_size */)
-// Sent immediately before a top level navigation is initiated within Blink.
-// There are some exlusions, the most important ones are it is not sent
-// when creating a popup window, and not sent for application initiated
-// navigations. See AwContentRendererClient::HandleNavigation for all
-// cornercases. This is sent before updating the NavigationController state
-// or creating a URLRequest for the main frame resource.
-IPC_SYNC_MESSAGE_CONTROL5_1(AwViewHostMsg_ShouldOverrideUrlLoading,
- int /* render_frame_id id */,
- base::string16 /* in - url */,
- bool /* in - has_user_gesture */,
- bool /* in - is_redirect */,
- bool /* in - is_main_frame */,
- bool /* out - result */)
-
// Sent when a subframe is created.
IPC_MESSAGE_CONTROL2(AwViewHostMsg_SubFrameCreated,
int /* parent_render_frame_id */,