| Index: webkit/glue/webview_delegate.h
|
| diff --git a/webkit/glue/webview_delegate.h b/webkit/glue/webview_delegate.h
|
| index eafd3830376f524862bf38cad77f5a962fdfb40a..1ccc761c6eef98fffd9f4ec15767956d20e70e76 100644
|
| --- a/webkit/glue/webview_delegate.h
|
| +++ b/webkit/glue/webview_delegate.h
|
| @@ -231,11 +231,15 @@ class WebViewDelegate : virtual public WebWidgetDelegate {
|
| // Notifies that a new script context has been created for this frame.
|
| // This is similar to WindowObjectCleared but only called once per frame
|
| // context.
|
| - virtual void DidCreateScriptContext(WebFrame* webframe) {
|
| + virtual void DidCreateScriptContextForFrame(WebFrame* webframe) {
|
| }
|
|
|
| // Notifies that this frame's script context has been destroyed.
|
| - virtual void DidDestroyScriptContext(WebFrame* webframe) {
|
| + virtual void DidDestroyScriptContextForFrame(WebFrame* webframe) {
|
| + }
|
| +
|
| + // Notifies that a garbage-collected context was created - content scripts.
|
| + virtual void DidCreateIsolatedScriptContext(WebFrame* webframe) {
|
| }
|
|
|
| // PolicyDelegate ----------------------------------------------------------
|
|
|