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

Unified Diff: third_party/WebKit/Source/core/fetch/ResourceFetcher.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
Index: third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp b/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
index 09a67634939a20b81c887427d9051c85f8fe3d65..457838094342d0438a841021bc15708a3e055783 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
+++ b/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
@@ -262,7 +262,7 @@ void ResourceFetcher::requestLoadStarted(Resource* resource, const FetchRequest&
populateResourceTiming(info.get(), resource, true);
m_scheduledResourceTimingReports.append(info.release());
if (!m_resourceTimingReportTimer.isActive())
- m_resourceTimingReportTimer.startOneShot(0, FROM_HERE);
+ m_resourceTimingReportTimer.startOneShot(0, BLINK_FROM_HERE);
}
if (m_validatedURLs.size() >= kMaxValidatedURLsSize) {
@@ -781,7 +781,7 @@ void ResourceFetcher::didLoadResource()
void ResourceFetcher::scheduleDocumentResourcesGC()
{
if (!m_garbageCollectDocumentResourcesTimer.isActive())
- m_garbageCollectDocumentResourcesTimer.startOneShot(0, FROM_HERE);
+ m_garbageCollectDocumentResourcesTimer.startOneShot(0, BLINK_FROM_HERE);
}
// Garbage collecting m_documentResources is a workaround for the
« no previous file with comments | « third_party/WebKit/Source/core/fetch/Resource.cpp ('k') | third_party/WebKit/Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698