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

Unified Diff: content/renderer/render_view.h

Issue 7955001: Update Chrome to use new context notification APIs from WebKit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/mock_content_renderer_client.cc ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view.h
diff --git a/content/renderer/render_view.h b/content/renderer/render_view.h
index 68a12ad752ad06500890c402c4338f5b3498fcbc..7f3430f8a1eb6b393771a0154dbaa1d45c4f66b4 100644
--- a/content/renderer/render_view.h
+++ b/content/renderer/render_view.h
@@ -556,11 +556,12 @@ class RenderView : public RenderWidget,
const WebKit::WebURL& target);
virtual void didAdoptURLLoader(WebKit::WebURLLoader* loader);
virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame);
- virtual void didCreateScriptContext(WebKit::WebFrame* frame);
- virtual void didDestroyScriptContext(WebKit::WebFrame* frame);
- virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame,
- int world_id,
- v8::Handle<v8::Context> context);
+ virtual void didCreateScriptContext(WebKit::WebFrame* frame,
+ v8::Handle<v8::Context>,
+ int world_id);
+ virtual void willReleaseScriptContext(WebKit::WebFrame* frame,
+ v8::Handle<v8::Context>,
+ int world_id);
virtual void didUpdateLayout(WebKit::WebFrame* frame);
virtual void didChangeScrollOffset(WebKit::WebFrame* frame);
virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers);
« no previous file with comments | « content/renderer/mock_content_renderer_client.cc ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698