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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 10316020: Remove WebContentsImpl::OnDidRedirectProvisionalLoad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix botched 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 #include "content/browser/renderer_host/render_view_host_impl.h" 5 #include "content/browser/renderer_host/render_view_host_impl.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 IPC_BEGIN_MESSAGE_MAP_EX(RenderViewHostImpl, msg, msg_is_ok) 851 IPC_BEGIN_MESSAGE_MAP_EX(RenderViewHostImpl, msg, msg_is_ok)
852 IPC_MESSAGE_HANDLER(ViewHostMsg_ShowView, OnMsgShowView) 852 IPC_MESSAGE_HANDLER(ViewHostMsg_ShowView, OnMsgShowView)
853 IPC_MESSAGE_HANDLER(ViewHostMsg_ShowWidget, OnMsgShowWidget) 853 IPC_MESSAGE_HANDLER(ViewHostMsg_ShowWidget, OnMsgShowWidget)
854 IPC_MESSAGE_HANDLER(ViewHostMsg_ShowFullscreenWidget, 854 IPC_MESSAGE_HANDLER(ViewHostMsg_ShowFullscreenWidget,
855 OnMsgShowFullscreenWidget) 855 OnMsgShowFullscreenWidget)
856 IPC_MESSAGE_HANDLER_DELAY_REPLY(ViewHostMsg_RunModal, OnMsgRunModal) 856 IPC_MESSAGE_HANDLER_DELAY_REPLY(ViewHostMsg_RunModal, OnMsgRunModal)
857 IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewReady, OnMsgRenderViewReady) 857 IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewReady, OnMsgRenderViewReady)
858 IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewGone, OnMsgRenderViewGone) 858 IPC_MESSAGE_HANDLER(ViewHostMsg_RenderViewGone, OnMsgRenderViewGone)
859 IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame, 859 IPC_MESSAGE_HANDLER(ViewHostMsg_DidStartProvisionalLoadForFrame,
860 OnMsgDidStartProvisionalLoadForFrame) 860 OnMsgDidStartProvisionalLoadForFrame)
861 IPC_MESSAGE_HANDLER(ViewHostMsg_DidRedirectProvisionalLoad,
862 OnMsgDidRedirectProvisionalLoad)
863 IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError, 861 IPC_MESSAGE_HANDLER(ViewHostMsg_DidFailProvisionalLoadWithError,
864 OnMsgDidFailProvisionalLoadWithError) 862 OnMsgDidFailProvisionalLoadWithError)
865 IPC_MESSAGE_HANDLER_GENERIC(ViewHostMsg_FrameNavigate, OnMsgNavigate(msg)) 863 IPC_MESSAGE_HANDLER_GENERIC(ViewHostMsg_FrameNavigate, OnMsgNavigate(msg))
866 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateState, OnMsgUpdateState) 864 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateState, OnMsgUpdateState)
867 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateTitle, OnMsgUpdateTitle) 865 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateTitle, OnMsgUpdateTitle)
868 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateEncoding, OnMsgUpdateEncoding) 866 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateEncoding, OnMsgUpdateEncoding)
869 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateTargetURL, OnMsgUpdateTargetURL) 867 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateTargetURL, OnMsgUpdateTargetURL)
870 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateInspectorSetting, 868 IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateInspectorSetting,
871 OnUpdateInspectorSetting) 869 OnUpdateInspectorSetting)
872 IPC_MESSAGE_HANDLER(ViewHostMsg_Close, OnMsgClose) 870 IPC_MESSAGE_HANDLER(ViewHostMsg_Close, OnMsgClose)
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
1845 // can cause navigations to be ignored in OnMsgNavigate. 1843 // can cause navigations to be ignored in OnMsgNavigate.
1846 is_waiting_for_beforeunload_ack_ = false; 1844 is_waiting_for_beforeunload_ack_ = false;
1847 is_waiting_for_unload_ack_ = false; 1845 is_waiting_for_unload_ack_ = false;
1848 } 1846 }
1849 1847
1850 void RenderViewHostImpl::ClearPowerSaveBlockers() { 1848 void RenderViewHostImpl::ClearPowerSaveBlockers() {
1851 STLDeleteValues(&power_save_blockers_); 1849 STLDeleteValues(&power_save_blockers_);
1852 } 1850 }
1853 1851
1854 } // namespace content 1852 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/prerender/prerender_tab_helper.cc ('k') | content/browser/web_contents/navigation_controller_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698