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

Side by Side Diff: webkit/glue/webframeloaderclient_impl.h

Issue 147124: Add notifications for when V8Proxy creates or destroys a V8 Context. (Closed)
Patch Set: roll deps 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 | « webkit/glue/webframe_impl.cc ('k') | webkit/glue/webframeloaderclient_impl.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ 5 #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__
6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ 6 #define WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 9
10 MSVC_PUSH_WARNING_LEVEL(0); 10 MSVC_PUSH_WARNING_LEVEL(0);
(...skipping 26 matching lines...) Expand all
37 // WebCore::FrameLoaderClient ---------------------------------------------- 37 // WebCore::FrameLoaderClient ----------------------------------------------
38 38
39 virtual void frameLoaderDestroyed(); 39 virtual void frameLoaderDestroyed();
40 40
41 // Notifies the WebView delegate that the JS window object has been cleared, 41 // Notifies the WebView delegate that the JS window object has been cleared,
42 // giving it a chance to bind native objects to the window before script 42 // giving it a chance to bind native objects to the window before script
43 // parsing begins. 43 // parsing begins.
44 virtual void windowObjectCleared(); 44 virtual void windowObjectCleared();
45 virtual void documentElementAvailable(); 45 virtual void documentElementAvailable();
46 46
47 virtual void didCreateScriptContext();
48 virtual void didDestroyScriptContext();
49
47 virtual bool hasWebView() const; // mainly for assertions 50 virtual bool hasWebView() const; // mainly for assertions
48 virtual bool hasFrameView() const; // ditto 51 virtual bool hasFrameView() const; // ditto
49 52
50 virtual void makeRepresentation(WebCore::DocumentLoader*); 53 virtual void makeRepresentation(WebCore::DocumentLoader*);
51 virtual void forceLayout(); 54 virtual void forceLayout();
52 virtual void forceLayoutForNonHTML(); 55 virtual void forceLayoutForNonHTML();
53 56
54 virtual void setCopiesOnScroll(); 57 virtual void setCopiesOnScroll();
55 58
56 virtual void detachedFromParent2(); 59 virtual void detachedFromParent2();
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 WebPluginContainer* plugin_widget_; 250 WebPluginContainer* plugin_widget_;
248 // Indicates if we need to send over the initial notification to the plugin 251 // Indicates if we need to send over the initial notification to the plugin
249 // which specifies that the plugin should be ready to accept data. 252 // which specifies that the plugin should be ready to accept data.
250 bool sent_initial_response_to_plugin_; 253 bool sent_initial_response_to_plugin_;
251 254
252 // The disposition to use for the next call to dispatchCreatePage. 255 // The disposition to use for the next call to dispatchCreatePage.
253 WindowOpenDisposition next_window_open_disposition_; 256 WindowOpenDisposition next_window_open_disposition_;
254 }; 257 };
255 258
256 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__ 259 #endif // #ifndef WEBKIT_GLUE_WEBFRAMELOADERCLIENT_IMPL_H__
OLDNEW
« no previous file with comments | « webkit/glue/webframe_impl.cc ('k') | webkit/glue/webframeloaderclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698