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

Side by Side Diff: chrome/renderer/render_view.h

Issue 155309: Chrome-side of fixes for content-script messaging. (Closed)
Patch Set: temporary webkit hack Created 11 years, 5 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
« no previous file with comments | « chrome/renderer/extensions/event_bindings.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_RENDERER_RENDER_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 7
8 #include <string> 8 #include <string>
9 #include <queue> 9 #include <queue>
10 #include <vector> 10 #include <vector>
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 const GURL& source); 211 const GURL& source);
212 virtual void WillCloseFrame(WebView* webview, WebFrame* frame); 212 virtual void WillCloseFrame(WebView* webview, WebFrame* frame);
213 virtual void WillSubmitForm(WebView* webview, WebFrame* frame, 213 virtual void WillSubmitForm(WebView* webview, WebFrame* frame,
214 const WebKit::WebForm& form); 214 const WebKit::WebForm& form);
215 virtual void WillSendRequest(WebView* webview, 215 virtual void WillSendRequest(WebView* webview,
216 uint32 identifier, 216 uint32 identifier,
217 WebKit::WebURLRequest* request); 217 WebKit::WebURLRequest* request);
218 218
219 virtual void WindowObjectCleared(WebFrame* webframe); 219 virtual void WindowObjectCleared(WebFrame* webframe);
220 virtual void DocumentElementAvailable(WebFrame* webframe); 220 virtual void DocumentElementAvailable(WebFrame* webframe);
221 virtual void DidCreateScriptContext(WebFrame* webframe); 221 virtual void DidCreateScriptContextForFrame(WebFrame* webframe);
222 virtual void DidDestroyScriptContext(WebFrame* webframe); 222 virtual void DidDestroyScriptContextForFrame(WebFrame* webframe);
223 virtual void DidCreateIsolatedScriptContext(WebFrame* webframe);
223 224
224 virtual WindowOpenDisposition DispositionForNavigationAction( 225 virtual WindowOpenDisposition DispositionForNavigationAction(
225 WebView* webview, 226 WebView* webview,
226 WebFrame* frame, 227 WebFrame* frame,
227 const WebKit::WebURLRequest& request, 228 const WebKit::WebURLRequest& request,
228 WebKit::WebNavigationType type, 229 WebKit::WebNavigationType type,
229 WindowOpenDisposition disposition, 230 WindowOpenDisposition disposition,
230 bool is_redirect); 231 bool is_redirect);
231 232
232 virtual WebView* CreateWebView(WebView* webview, 233 virtual WebView* CreateWebView(WebView* webview,
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 // PrintWebViewHelper handles printing. Note that this object is constructed 795 // PrintWebViewHelper handles printing. Note that this object is constructed
795 // when printing for the first time but only destroyed with the RenderView. 796 // when printing for the first time but only destroyed with the RenderView.
796 scoped_ptr<PrintWebViewHelper> print_helper_; 797 scoped_ptr<PrintWebViewHelper> print_helper_;
797 798
798 RendererPreferences renderer_preferences_; 799 RendererPreferences renderer_preferences_;
799 800
800 DISALLOW_COPY_AND_ASSIGN(RenderView); 801 DISALLOW_COPY_AND_ASSIGN(RenderView);
801 }; 802 };
802 803
803 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 804 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/event_bindings.cc ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698