summaryrefslogtreecommitdiffstats
path: root/webkit/api/public/WebFrameClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/api/public/WebFrameClient.h')
-rw-r--r--webkit/api/public/WebFrameClient.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/webkit/api/public/WebFrameClient.h b/webkit/api/public/WebFrameClient.h
index 6ef6e2d..24701e5 100644
--- a/webkit/api/public/WebFrameClient.h
+++ b/webkit/api/public/WebFrameClient.h
@@ -215,6 +215,18 @@ namespace WebKit {
// Script in the page tried to allocate too much memory.
virtual void didExhaustMemoryAvailableForScript(WebFrame*) = 0;
+ // Notifies that a new script context has been created for this frame.
+ // This is similar to didClearWindowObject but only called once per
+ // frame context.
+ virtual void didCreateScriptContext(WebFrame*) = 0;
+
+ // Notifies that this frame's script context has been destroyed.
+ virtual void didDestroyScriptContext(WebFrame*) = 0;
+
+ // Notifies that a garbage-collected context was created - content
+ // scripts.
+ virtual void didCreateIsolatedScriptContext(WebFrame*) = 0;
+
// Geometry notifications ----------------------------------------------