RESOLVED FIXED 26733
Add V8 methods to notify clients about context creation/destruction
https://bugs.webkit.org/show_bug.cgi?id=26733
Summary Add V8 methods to notify clients about context creation/destruction
Matt Perry
Reported 2009-06-25 14:41:27 PDT
Add V8-only methods to FrameLoaderClient that V8 can use to send out notifications when it creates/destroys a script context.
Attachments
adds 2 methods to FrameLoaderClient.h (1.46 KB, patch)
2009-06-25 14:44 PDT, Matt Perry
fishd: review-
made pure virtual (2.21 KB, patch)
2009-06-25 16:12 PDT, Matt Perry
fishd: review+
Matt Perry
Comment 1 2009-06-25 14:44:09 PDT
Created attachment 31877 [details] adds 2 methods to FrameLoaderClient.h
Darin Fisher (:fishd, Google)
Comment 2 2009-06-25 15:58:21 PDT
Comment on attachment 31877 [details] adds 2 methods to FrameLoaderClient.h > Index: WebCore/ChangeLog ... > + Reviewed by NOBODY (OOPS!). > + > + https://bugs.webkit.org/show_bug.cgi?id=26733 > + > + Add V8-only methods to FrameLoaderClient that V8 can use to send > + out notifications when it creates/destroys a script context. Replace tabs with spaces > Index: WebCore/loader/FrameLoaderClient.h ... > +#if USE(V8) > + virtual void didCreateScriptContext() const { } > + virtual void didDestroyScriptContext() const { } I think these should be pure virtual like the other FrameLoaderClient methods. Otherwise, LG
Matt Perry
Comment 3 2009-06-25 16:12:03 PDT
Created attachment 31884 [details] made pure virtual
Darin Fisher (:fishd, Google)
Comment 4 2009-06-25 16:21:50 PDT
Note You need to log in before you can comment on or make changes to this bug.