Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: third_party/WebKit/Source/web/WebLeakDetector.cpp

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebKit.cpp ('k') | third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>*)
« no previous file with comments | « third_party/WebKit/Source/web/WebKit.cpp ('k') | third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698