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

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: Don't break unittest 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 base::TerminationStatus status, 273 base::TerminationStatus status,
274 int error_code) OVERRIDE; 274 int error_code) OVERRIDE;
275 virtual void RenderViewDeleted( 275 virtual void RenderViewDeleted(
276 content::RenderViewHost* render_view_host) OVERRIDE; 276 content::RenderViewHost* render_view_host) OVERRIDE;
277 virtual void DidStartProvisionalLoadForFrame( 277 virtual void DidStartProvisionalLoadForFrame(
278 content::RenderViewHost* render_view_host, 278 content::RenderViewHost* render_view_host,
279 int64 frame_id, 279 int64 frame_id,
280 bool main_frame, 280 bool main_frame,
281 const GURL& opener_url, 281 const GURL& opener_url,
282 const GURL& url) OVERRIDE; 282 const GURL& url) OVERRIDE;
283 virtual void DidRedirectProvisionalLoad(
284 content::RenderViewHost* render_view_host,
285 int32 page_id,
286 const GURL& opener_url,
287 const GURL& source_url,
288 const GURL& target_url) OVERRIDE;
289 virtual void DidFailProvisionalLoadWithError( 283 virtual void DidFailProvisionalLoadWithError(
290 content::RenderViewHost* render_view_host, 284 content::RenderViewHost* render_view_host,
291 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) 285 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params)
292 OVERRIDE; 286 OVERRIDE;
293 virtual void DidNavigate( 287 virtual void DidNavigate(
294 content::RenderViewHost* render_view_host, 288 content::RenderViewHost* render_view_host,
295 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; 289 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE;
296 virtual void UpdateState(content::RenderViewHost* render_view_host, 290 virtual void UpdateState(content::RenderViewHost* render_view_host,
297 int32 page_id, 291 int32 page_id,
298 const std::string& state) OVERRIDE; 292 const std::string& state) OVERRIDE;
(...skipping 494 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