Index: Source/core/html/parser/HTMLResourcePreloader.cpp |
diff --git a/Source/core/html/parser/HTMLResourcePreloader.cpp b/Source/core/html/parser/HTMLResourcePreloader.cpp |
index 84688026248a6a949cc93784fb6e64b19672ad8d..9901d60c70e561280b4d0eeb4b519f5c4679ceca 100644 |
--- a/Source/core/html/parser/HTMLResourcePreloader.cpp |
+++ b/Source/core/html/parser/HTMLResourcePreloader.cpp |
@@ -92,8 +92,8 @@ void HTMLResourcePreloader::takeAndPreload(PreloadRequestStream& r) |
void HTMLResourcePreloader::preload(PassOwnPtr<PreloadRequest> preload) |
{ |
FetchRequest request = preload->resourceRequest(m_document); |
- blink::Platform::current()->histogramCustomCounts("WebCore.PreloadDelayMs", static_cast<int>(1000 * (monotonicallyIncreasingTime() - preload->discoveryTime())), 0, 2000, 20); |
+ Platform::current()->histogramCustomCounts("WebCore.PreloadDelayMs", static_cast<int>(1000 * (monotonicallyIncreasingTime() - preload->discoveryTime())), 0, 2000, 20); |
m_document->fetcher()->preload(preload->resourceType(), request, preload->charset()); |
} |
-} |
+} // namespace blink |