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

Side by Side Diff: third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.cpp

Issue 1659053002: Remove custom counts histogram from the blink API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All Rights Reserved. 2 * Copyright (C) 2013 Google Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "core/html/parser/HTMLResourcePreloader.h" 26 #include "core/html/parser/HTMLResourcePreloader.h"
27 27
28 #include "core/dom/Document.h" 28 #include "core/dom/Document.h"
29 #include "core/fetch/FetchInitiatorInfo.h" 29 #include "core/fetch/FetchInitiatorInfo.h"
30 #include "core/fetch/ResourceFetcher.h" 30 #include "core/fetch/ResourceFetcher.h"
31 #include "core/loader/DocumentLoader.h" 31 #include "core/loader/DocumentLoader.h"
32 #include "platform/Histogram.h"
32 #include "public/platform/Platform.h" 33 #include "public/platform/Platform.h"
33 34
34 namespace blink { 35 namespace blink {
35 36
36 inline HTMLResourcePreloader::HTMLResourcePreloader(Document& document) 37 inline HTMLResourcePreloader::HTMLResourcePreloader(Document& document)
37 : m_document(document) 38 : m_document(document)
38 { 39 {
39 } 40 }
40 41
41 PassOwnPtrWillBeRawPtr<HTMLResourcePreloader> HTMLResourcePreloader::create(Docu ment& document) 42 PassOwnPtrWillBeRawPtr<HTMLResourcePreloader> HTMLResourcePreloader::create(Docu ment& document)
(...skipping 26 matching lines...) Expand all
68 if (!m_document->loader()) 69 if (!m_document->loader())
69 return; 70 return;
70 FetchRequest request = preload->resourceRequest(m_document); 71 FetchRequest request = preload->resourceRequest(m_document);
71 // TODO(dgozman): This check should go to HTMLPreloadScanner, but this requi res 72 // TODO(dgozman): This check should go to HTMLPreloadScanner, but this requi res
72 // making Document::completeURLWithOverride logic to be statically accessibl e. 73 // making Document::completeURLWithOverride logic to be statically accessibl e.
73 if (request.url().protocolIsData()) 74 if (request.url().protocolIsData())
74 return; 75 return;
75 if (preload->resourceType() == Resource::Script || preload->resourceType() = = Resource::CSSStyleSheet || preload->resourceType() == Resource::ImportResource ) 76 if (preload->resourceType() == Resource::Script || preload->resourceType() = = Resource::CSSStyleSheet || preload->resourceType() == Resource::ImportResource )
76 request.setCharset(preload->charset().isEmpty() ? m_document->characterS et().string() : preload->charset()); 77 request.setCharset(preload->charset().isEmpty() ? m_document->characterS et().string() : preload->charset());
77 request.setForPreload(true); 78 request.setForPreload(true);
78 Platform::current()->histogramCustomCounts("WebCore.PreloadDelayMs", static_ cast<int>(1000 * (monotonicallyIncreasingTime() - preload->discoveryTime())), 0, 2000, 20); 79 int duration = static_cast<int>(1000 * (monotonicallyIncreasingTime() - prel oad->discoveryTime()));
80 DEFINE_THREAD_SAFE_STATIC_LOCAL(CustomCountHistogram, preloadDelayHistogram, new CustomCountHistogram("WebCore.PreloadDelayMs", 0, 2000, 20));
esprehn 2016/02/04 23:25:23 main thread only, m_document below is only accessi
81 preloadDelayHistogram.count(duration);
79 m_document->loader()->startPreload(preload->resourceType(), request); 82 m_document->loader()->startPreload(preload->resourceType(), request);
80 } 83 }
81 84
82 } // namespace blink 85 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698