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

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

Issue 10827078: Support frame tree propagation between renderers in the same browsing instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes based on more comments from Albert. Created 8 years, 4 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 <string> 9 #include <string>
10 10
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE; 318 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE;
319 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE; 319 virtual void Close(content::RenderViewHost* render_view_host) OVERRIDE;
320 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE; 320 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE;
321 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE; 321 virtual void SwappedOut(content::RenderViewHost* render_view_host) OVERRIDE;
322 virtual void DidStartLoading( 322 virtual void DidStartLoading(
323 content::RenderViewHost* render_view_host) OVERRIDE; 323 content::RenderViewHost* render_view_host) OVERRIDE;
324 virtual void DidStopLoading( 324 virtual void DidStopLoading(
325 content::RenderViewHost* render_view_host) OVERRIDE; 325 content::RenderViewHost* render_view_host) OVERRIDE;
326 virtual void DidCancelLoading() OVERRIDE; 326 virtual void DidCancelLoading() OVERRIDE;
327 virtual void DidChangeLoadProgress(double progress) OVERRIDE; 327 virtual void DidChangeLoadProgress(double progress) OVERRIDE;
328 virtual void DidUpdateFrameTree(content::RenderViewHost* rvh) OVERRIDE;
328 virtual void DocumentAvailableInMainFrame( 329 virtual void DocumentAvailableInMainFrame(
329 content::RenderViewHost* render_view_host) OVERRIDE; 330 content::RenderViewHost* render_view_host) OVERRIDE;
330 virtual void DocumentOnLoadCompletedInMainFrame( 331 virtual void DocumentOnLoadCompletedInMainFrame(
331 content::RenderViewHost* render_view_host, 332 content::RenderViewHost* render_view_host,
332 int32 page_id) OVERRIDE; 333 int32 page_id) OVERRIDE;
333 virtual void RequestOpenURL(content::RenderViewHost* rvh, 334 virtual void RequestOpenURL(content::RenderViewHost* rvh,
334 const GURL& url, 335 const GURL& url,
335 const content::Referrer& referrer, 336 const content::Referrer& referrer,
336 WindowOpenDisposition disposition, 337 WindowOpenDisposition disposition,
337 int64 source_frame_id) OVERRIDE; 338 int64 source_frame_id) OVERRIDE;
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 content::NotificationRegistrar registrar_; 818 content::NotificationRegistrar registrar_;
818 819
819 // Used during IPC message dispatching so that the handlers can get a pointer 820 // Used during IPC message dispatching so that the handlers can get a pointer
820 // to the RVH through which the message was received. 821 // to the RVH through which the message was received.
821 content::RenderViewHost* message_source_; 822 content::RenderViewHost* message_source_;
822 823
823 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 824 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
824 }; 825 };
825 826
826 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 827 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698