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

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

Issue 147124: Add notifications for when V8Proxy creates or destroys a V8 Context. (Closed)
Patch Set: roll deps Created 11 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
« 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 WebFrame* frame, 215 WebFrame* frame,
216 const GURL& source); 216 const GURL& source);
217 virtual void WillSubmitForm(WebView* webview, WebFrame* frame, 217 virtual void WillSubmitForm(WebView* webview, WebFrame* frame,
218 const WebKit::WebForm& form); 218 const WebKit::WebForm& form);
219 virtual void WillSendRequest(WebView* webview, 219 virtual void WillSendRequest(WebView* webview,
220 uint32 identifier, 220 uint32 identifier,
221 WebKit::WebURLRequest* request); 221 WebKit::WebURLRequest* request);
222 222
223 virtual void WindowObjectCleared(WebFrame* webframe); 223 virtual void WindowObjectCleared(WebFrame* webframe);
224 virtual void DocumentElementAvailable(WebFrame* webframe); 224 virtual void DocumentElementAvailable(WebFrame* webframe);
225 virtual void DidCreateScriptContext(WebFrame* webframe);
226 virtual void DidDestroyScriptContext(WebFrame* webframe);
225 227
226 virtual WindowOpenDisposition DispositionForNavigationAction( 228 virtual WindowOpenDisposition DispositionForNavigationAction(
227 WebView* webview, 229 WebView* webview,
228 WebFrame* frame, 230 WebFrame* frame,
229 const WebKit::WebURLRequest& request, 231 const WebKit::WebURLRequest& request,
230 WebKit::WebNavigationType type, 232 WebKit::WebNavigationType type,
231 WindowOpenDisposition disposition, 233 WindowOpenDisposition disposition,
232 bool is_redirect); 234 bool is_redirect);
233 235
234 virtual WebView* CreateWebView(WebView* webview, 236 virtual WebView* CreateWebView(WebView* webview,
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 // PrintWebViewHelper handles printing. Note that this object is constructed 786 // PrintWebViewHelper handles printing. Note that this object is constructed
785 // when printing for the first time but only destroyed with the RenderView. 787 // when printing for the first time but only destroyed with the RenderView.
786 scoped_ptr<PrintWebViewHelper> print_helper_; 788 scoped_ptr<PrintWebViewHelper> print_helper_;
787 789
788 RendererPreferences renderer_preferences_; 790 RendererPreferences renderer_preferences_;
789 791
790 DISALLOW_COPY_AND_ASSIGN(RenderView); 792 DISALLOW_COPY_AND_ASSIGN(RenderView);
791 }; 793 };
792 794
793 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 795 #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