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

Unified Diff: third_party/WebKit/Source/core/fetch/FontResource.cpp

Issue 2191533003: Refactor Timer classes in preparation for landing FrameTimers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More build fixes Created 4 years, 5 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/FontResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/FontResource.cpp b/third_party/WebKit/Source/core/fetch/FontResource.cpp
index 061af596c2858305ea5c8dcc3b959cb1a5ddc960..0684def41af36d4a131c456b2748b73b1bbd2e8c 100644
--- a/third_party/WebKit/Source/core/fetch/FontResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/FontResource.cpp
@@ -145,7 +145,7 @@ bool FontResource::isSafeToUnlock() const
return m_data->hasOneRef();
}
-void FontResource::fontLoadShortLimitCallback(Timer<FontResource>*)
+void FontResource::fontLoadShortLimitCallback(TimerBase*)
{
if (!isLoading())
return;
@@ -156,7 +156,7 @@ void FontResource::fontLoadShortLimitCallback(Timer<FontResource>*)
client->fontLoadShortLimitExceeded(this);
}
-void FontResource::fontLoadLongLimitCallback(Timer<FontResource>*)
+void FontResource::fontLoadLongLimitCallback(TimerBase*)
{
if (!isLoading())
return;
« no previous file with comments | « third_party/WebKit/Source/core/fetch/FontResource.h ('k') | third_party/WebKit/Source/core/fetch/MemoryCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698