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

Unified Diff: Source/core/inspector/AsyncOperationMap.h

Issue 1198863006: First version of PerformanceObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review comments. Name changes and moving statics to PerformanceBase. Created 5 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: Source/core/inspector/AsyncOperationMap.h
diff --git a/Source/core/inspector/AsyncOperationMap.h b/Source/core/inspector/AsyncOperationMap.h
index 7320a16db70587a181b75061193495a045a86bee..bb09344492ec1234fc2b35426be24b2865f7ee24 100644
--- a/Source/core/inspector/AsyncOperationMap.h
+++ b/Source/core/inspector/AsyncOperationMap.h
@@ -13,11 +13,10 @@
namespace blink {
-template <class K>
+template <class K, class MapType = WillBeHeapHashMap<K, int>>
class AsyncOperationMap final {
ALLOW_ONLY_INLINE_ALLOCATION();
public:
- using MapType = WillBeHeapHashMap<K, int>;
explicit AsyncOperationMap(InspectorDebuggerAgent* debuggerAgent)
: m_debuggerAgent(debuggerAgent)
{

Powered by Google App Engine
This is Rietveld 408576698