| 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 72b85fac0a9773b54c954dfadc8496f62b99f660..e1ddecbab86bf329b6cd9c60d7956be2f3b50bd0 100644
|
| --- a/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLeakDetector.cpp
|
| @@ -110,7 +110,7 @@ void WebLeakDetectorImpl::collectGarbageAndGetDOMCounts(WebLocalFrame* frame)
|
| // so previous document is still held by the loader until the next event loop.
|
| // Complete all pending tasks before proceeding to gc.
|
| m_numberOfGCNeeded = 2;
|
| - m_delayedGCAndReportTimer.startOneShot(0, FROM_HERE);
|
| + m_delayedGCAndReportTimer.startOneShot(0, BLINK_FROM_HERE);
|
| }
|
|
|
| void WebLeakDetectorImpl::delayedGCAndReport(Timer<WebLeakDetectorImpl>*)
|
| @@ -124,9 +124,9 @@ void WebLeakDetectorImpl::delayedGCAndReport(Timer<WebLeakDetectorImpl>*)
|
|
|
| // Inspect counters on the next event loop.
|
| if (--m_numberOfGCNeeded)
|
| - m_delayedGCAndReportTimer.startOneShot(0, FROM_HERE);
|
| + m_delayedGCAndReportTimer.startOneShot(0, BLINK_FROM_HERE);
|
| else
|
| - m_delayedReportTimer.startOneShot(0, FROM_HERE);
|
| + m_delayedReportTimer.startOneShot(0, BLINK_FROM_HERE);
|
| }
|
|
|
| void WebLeakDetectorImpl::delayedReport(Timer<WebLeakDetectorImpl>*)
|
|
|