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

Side by Side Diff: content/browser/frame_host/interstitial_page_impl.cc

Issue 26316005: Move out DidStartProvisionalLoad from WebContentsImpl into Navigator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some cleanup. Created 7 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/frame_host/interstitial_page_impl.h" 5 #include "content/browser/frame_host/interstitial_page_impl.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 BrowserThread::IO, 788 BrowserThread::IO,
789 FROM_HERE, 789 FROM_HERE,
790 base::Bind( 790 base::Bind(
791 &ResourceRequestHelper, 791 &ResourceRequestHelper,
792 ResourceDispatcherHostImpl::Get(), 792 ResourceDispatcherHostImpl::Get(),
793 original_child_id_, 793 original_child_id_,
794 original_rvh_id_, 794 original_rvh_id_,
795 action)); 795 action));
796 } 796 }
797 797
798 void InterstitialPageImpl::DidStartProvisionalLoad(
799 RenderFrameHostImpl* render_frame_host,
800 int64 frame_id,
801 int64 parent_frame_id,
802 bool is_main_frame,
803 const GURL& validated_url,
804 bool is_error_page,
805 bool is_iframe_srcdoc) {
806 }
807
808 void InterstitialPageImpl::NotifyProvisionalChangeToMainFrameUrl(
809 RenderFrameHostImpl* render_frame_host,
810 const GURL& url) {
811 }
812
813 void InterstitialPageImpl::NotifyNavigationStateChanged(
814 unsigned changed_flags) {
815 }
816
798 InterstitialPageImpl::InterstitialPageRVHDelegateView:: 817 InterstitialPageImpl::InterstitialPageRVHDelegateView::
799 InterstitialPageRVHDelegateView(InterstitialPageImpl* page) 818 InterstitialPageRVHDelegateView(InterstitialPageImpl* page)
800 : interstitial_page_(page) { 819 : interstitial_page_(page) {
801 } 820 }
802 821
803 void InterstitialPageImpl::InterstitialPageRVHDelegateView::ShowPopupMenu( 822 void InterstitialPageImpl::InterstitialPageRVHDelegateView::ShowPopupMenu(
804 const gfx::Rect& bounds, 823 const gfx::Rect& bounds,
805 int item_height, 824 int item_height,
806 double item_font_size, 825 double item_font_size,
807 int selected_item, 826 int selected_item,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 861
843 web_contents->GetDelegateView()->TakeFocus(reverse); 862 web_contents->GetDelegateView()->TakeFocus(reverse);
844 } 863 }
845 864
846 void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply( 865 void InterstitialPageImpl::InterstitialPageRVHDelegateView::OnFindReply(
847 int request_id, int number_of_matches, const gfx::Rect& selection_rect, 866 int request_id, int number_of_matches, const gfx::Rect& selection_rect,
848 int active_match_ordinal, bool final_update) { 867 int active_match_ordinal, bool final_update) {
849 } 868 }
850 869
851 } // namespace content 870 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698