Changeset 109078 in webkit


Ignore:
Timestamp:
Feb 27, 2012 10:34:10 PM (12 years ago)
Author:
koz@chromium.org
Message:

Add missing parameter to didCreateScriptContext() so it overrides base class again.
https://bugs.webkit.org/show_bug.cgi?id=79742

Reviewed by Kent Tamura.

  • tests/WebFrameTest.cpp:
Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r109077 r109078  
     12012-02-27  James Kozianski  <koz@chromium.org>
     2
     3        Add missing parameter to didCreateScriptContext() so it overrides base class again.
     4        https://bugs.webkit.org/show_bug.cgi?id=79742
     5
     6        Reviewed by Kent Tamura.
     7
     8        * tests/WebFrameTest.cpp:
     9
    1102012-02-27  Kenichi Ishibashi  <bashi@chromium.org>
    211
  • trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp

    r108883 r109078  
    323323
    324324 private:
    325     virtual void didCreateScriptContext(WebFrame* frame, v8::Handle<v8::Context> context, int worldId)
     325    virtual void didCreateScriptContext(WebFrame* frame, v8::Handle<v8::Context> context, int extensionGroup, int worldId) OVERRIDE
    326326    {
    327327        createNotifications.push_back(new Notification(frame, context, worldId));
    328328    }
    329329
    330     virtual void willReleaseScriptContext(WebFrame* frame, v8::Handle<v8::Context> context, int worldId)
     330    virtual void willReleaseScriptContext(WebFrame* frame, v8::Handle<v8::Context> context, int worldId) OVERRIDE
    331331    {
    332332        releaseNotifications.push_back(new Notification(frame, context, worldId));
Note: See TracChangeset for help on using the changeset viewer.