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

Side by Side Diff: content/browser/web_contents/web_contents_impl.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 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 base::TerminationStatus status, 274 base::TerminationStatus status,
275 int error_code) OVERRIDE; 275 int error_code) OVERRIDE;
276 virtual void RenderViewDeleted( 276 virtual void RenderViewDeleted(
277 content::RenderViewHost* render_view_host) OVERRIDE; 277 content::RenderViewHost* render_view_host) OVERRIDE;
278 virtual void DidStartProvisionalLoadForFrame( 278 virtual void DidStartProvisionalLoadForFrame(
279 content::RenderViewHost* render_view_host, 279 content::RenderViewHost* render_view_host,
280 int64 frame_id, 280 int64 frame_id,
281 bool main_frame, 281 bool main_frame,
282 const GURL& opener_url, 282 const GURL& opener_url,
283 const GURL& url) OVERRIDE; 283 const GURL& url) OVERRIDE;
284 virtual void DidRedirectProvisionalLoad(
285 content::RenderViewHost* render_view_host,
286 int32 page_id,
287 const GURL& opener_url,
288 const GURL& source_url,
289 const GURL& target_url) OVERRIDE;
290 virtual void DidFailProvisionalLoadWithError( 284 virtual void DidFailProvisionalLoadWithError(
291 content::RenderViewHost* render_view_host, 285 content::RenderViewHost* render_view_host,
292 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) 286 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params)
293 OVERRIDE; 287 OVERRIDE;
294 virtual void DidNavigate( 288 virtual void DidNavigate(
295 content::RenderViewHost* render_view_host, 289 content::RenderViewHost* render_view_host,
296 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; 290 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE;
297 virtual void UpdateState(content::RenderViewHost* render_view_host, 291 virtual void UpdateState(content::RenderViewHost* render_view_host,
298 int32 page_id, 292 int32 page_id,
299 const std::string& state) OVERRIDE; 293 const std::string& state) OVERRIDE;
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 content::ColorChooser* color_chooser_; 787 content::ColorChooser* color_chooser_;
794 788
795 // This must be at the end, or else we might get notifications and use other 789 // This must be at the end, or else we might get notifications and use other
796 // member variables that are gone. 790 // member variables that are gone.
797 content::NotificationRegistrar registrar_; 791 content::NotificationRegistrar registrar_;
798 792
799 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 793 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
800 }; 794 };
801 795
802 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 796 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698