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

Unified Diff: third_party/WebKit/Source/core/fetch/Resource.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/Resource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/Resource.cpp b/third_party/WebKit/Source/core/fetch/Resource.cpp
index 5c9e26944e13937b88c2a44d25fefd9a9caf3a04..157a18ff8960602655c979a7ef9fe7e6c1641b84 100644
--- a/third_party/WebKit/Source/core/fetch/Resource.cpp
+++ b/third_party/WebKit/Source/core/fetch/Resource.cpp
@@ -624,7 +624,7 @@ void Resource::allClientsRemoved()
if (m_type == MainResource || m_type == Raw)
cancelTimerFired(&m_cancelTimer);
else if (!m_cancelTimer.isActive())
- m_cancelTimer.startOneShot(0, FROM_HERE);
+ m_cancelTimer.startOneShot(0, BLINK_FROM_HERE);
unlock();
}
@@ -981,7 +981,7 @@ Resource::ResourceCallback::ResourceCallback()
void Resource::ResourceCallback::schedule(Resource* resource)
{
if (!m_callbackTaskFactory->isPending())
- Platform::current()->currentThread()->scheduler()->loadingTaskRunner()->postTask(FROM_HERE, m_callbackTaskFactory->cancelAndCreate());
+ Platform::current()->currentThread()->scheduler()->loadingTaskRunner()->postTask(BLINK_FROM_HERE, m_callbackTaskFactory->cancelAndCreate());
resource->assertAlive();
m_resourcesWithPendingClients.add(resource);
}
« no previous file with comments | « third_party/WebKit/Source/core/fetch/RawResourceTest.cpp ('k') | third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698