| Index: third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLeakDetector.cpp b/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| index e334b9f547076870826a6097f22b7a1cddee9a2c..7275d31d689f76fa2d9f1d1156aea53786e1f221 100644
|
| --- a/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| @@ -64,7 +64,7 @@ public:
|
|
|
| ~WebLeakDetectorImpl() override {}
|
|
|
| - void prepareForLeakDetection(WebLocalFrame*) override;
|
| + void prepareForLeakDetection() override;
|
| void collectGarbageAndReport() override;
|
|
|
| private:
|
| @@ -77,7 +77,7 @@ private:
|
| int m_numberOfGCNeeded;
|
| };
|
|
|
| -void WebLeakDetectorImpl::prepareForLeakDetection(WebLocalFrame* frame)
|
| +void WebLeakDetectorImpl::prepareForLeakDetection()
|
| {
|
| v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
| v8::HandleScope handleScope(isolate);
|
|
|