| Index: third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| index c420f19f0185e29306de3d6d821ffc302078cf40..9ed0a2334bc3495f91de27202f7207132f0e93ea 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| @@ -4474,12 +4474,10 @@ class ContextLifetimeTestWebFrameClient
|
| WTF::MakeUnique<Notification>(frame, context, world_id));
|
| }
|
|
|
| - void WillReleaseScriptContext(WebLocalFrame* frame,
|
| - v8::Local<v8::Context> context,
|
| + void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
| int world_id) override {
|
| - ASSERT_EQ(Frame(), frame);
|
| release_notifications_.push_back(
|
| - WTF::MakeUnique<Notification>(frame, context, world_id));
|
| + WTF::MakeUnique<Notification>(Frame(), context, world_id));
|
| }
|
| };
|
|
|
|
|