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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 11090068: When starting a provisional load include the parent frame ID in the IPC and pass it down the th WCO… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updatess Created 8 years, 2 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 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 virtual void RenderViewReady( 294 virtual void RenderViewReady(
295 content::RenderViewHost* render_view_host) OVERRIDE; 295 content::RenderViewHost* render_view_host) OVERRIDE;
296 virtual void RenderViewGone(content::RenderViewHost* render_view_host, 296 virtual void RenderViewGone(content::RenderViewHost* render_view_host,
297 base::TerminationStatus status, 297 base::TerminationStatus status,
298 int error_code) OVERRIDE; 298 int error_code) OVERRIDE;
299 virtual void RenderViewDeleted( 299 virtual void RenderViewDeleted(
300 content::RenderViewHost* render_view_host) OVERRIDE; 300 content::RenderViewHost* render_view_host) OVERRIDE;
301 virtual void DidStartProvisionalLoadForFrame( 301 virtual void DidStartProvisionalLoadForFrame(
302 content::RenderViewHost* render_view_host, 302 content::RenderViewHost* render_view_host,
303 int64 frame_id, 303 int64 frame_id,
304 int64 parent_frame_id,
304 bool main_frame, 305 bool main_frame,
305 const GURL& opener_url, 306 const GURL& opener_url,
306 const GURL& url) OVERRIDE; 307 const GURL& url) OVERRIDE;
307 virtual void DidRedirectProvisionalLoad( 308 virtual void DidRedirectProvisionalLoad(
308 content::RenderViewHost* render_view_host, 309 content::RenderViewHost* render_view_host,
309 int32 page_id, 310 int32 page_id,
310 const GURL& opener_url, 311 const GURL& opener_url,
311 const GURL& source_url, 312 const GURL& source_url,
312 const GURL& target_url) OVERRIDE; 313 const GURL& target_url) OVERRIDE;
313 virtual void DidFailProvisionalLoadWithError( 314 virtual void DidFailProvisionalLoadWithError(
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 content::RenderViewHost* message_source_; 868 content::RenderViewHost* message_source_;
868 869
869 // All live RenderWidgetHostImpls that are created by this object and may 870 // All live RenderWidgetHostImpls that are created by this object and may
870 // outlive it. 871 // outlive it.
871 std::set<content::RenderWidgetHostImpl*> created_widgets_; 872 std::set<content::RenderWidgetHostImpl*> created_widgets_;
872 873
873 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 874 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
874 }; 875 };
875 876
876 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 877 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698