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

Side by Side Diff: content/public/renderer/render_view_observer.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: Another round of fixes based on Charlie's review. Created 8 years, 3 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_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual void DidCommitProvisionalLoad(WebKit::WebFrame* frame, 61 virtual void DidCommitProvisionalLoad(WebKit::WebFrame* frame,
62 bool is_new_navigation) {} 62 bool is_new_navigation) {}
63 virtual void DidClearWindowObject(WebKit::WebFrame* frame) {} 63 virtual void DidClearWindowObject(WebKit::WebFrame* frame) {}
64 virtual void WillPerformClientRedirect( 64 virtual void WillPerformClientRedirect(
65 WebKit::WebFrame* frame, const WebKit::WebURL& from, 65 WebKit::WebFrame* frame, const WebKit::WebURL& from,
66 const WebKit::WebURL& to, double interval, double fire_time) {} 66 const WebKit::WebURL& to, double interval, double fire_time) {}
67 virtual void DidCancelClientRedirect(WebKit::WebFrame* frame) {} 67 virtual void DidCancelClientRedirect(WebKit::WebFrame* frame) {}
68 virtual void DidCompleteClientRedirect(WebKit::WebFrame* frame, 68 virtual void DidCompleteClientRedirect(WebKit::WebFrame* frame,
69 const WebKit::WebURL& from) {} 69 const WebKit::WebURL& from) {}
70 virtual void DidCreateDocumentElement(WebKit::WebFrame* frame) {} 70 virtual void DidCreateDocumentElement(WebKit::WebFrame* frame) {}
71 virtual void FrameCreated(WebKit::WebFrame* parent,
72 WebKit::WebFrame* frame) {}
71 virtual void FrameDetached(WebKit::WebFrame* frame) {} 73 virtual void FrameDetached(WebKit::WebFrame* frame) {}
72 virtual void FrameWillClose(WebKit::WebFrame* frame) {} 74 virtual void FrameWillClose(WebKit::WebFrame* frame) {}
73 virtual void WillSubmitForm(WebKit::WebFrame* frame, 75 virtual void WillSubmitForm(WebKit::WebFrame* frame,
74 const WebKit::WebFormElement& form) {} 76 const WebKit::WebFormElement& form) {}
75 virtual void DidCreateDataSource(WebKit::WebFrame* frame, 77 virtual void DidCreateDataSource(WebKit::WebFrame* frame,
76 WebKit::WebDataSource* ds) {} 78 WebKit::WebDataSource* ds) {}
77 virtual void PrintPage(WebKit::WebFrame* frame) {} 79 virtual void PrintPage(WebKit::WebFrame* frame) {}
78 virtual void FocusedNodeChanged(const WebKit::WebNode& node) {} 80 virtual void FocusedNodeChanged(const WebKit::WebNode& node) {}
79 virtual void WillCreateMediaPlayer(WebKit::WebFrame* frame, 81 virtual void WillCreateMediaPlayer(WebKit::WebFrame* frame,
80 WebKit::WebMediaPlayerClient* client) {} 82 WebKit::WebMediaPlayerClient* client) {}
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 RenderView* render_view_; 117 RenderView* render_view_;
116 // The routing ID of the associated RenderView. 118 // The routing ID of the associated RenderView.
117 int routing_id_; 119 int routing_id_;
118 120
119 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); 121 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver);
120 }; 122 };
121 123
122 } // namespace content 124 } // namespace content
123 125
124 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ 126 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698