Index: Source/core/timing/PerformanceUserTiming.cpp |
diff --git a/Source/core/timing/PerformanceUserTiming.cpp b/Source/core/timing/PerformanceUserTiming.cpp |
index 3c2d2673d500d61076b9c48563ae7fa238b0d1fa..f9ca90dc7598401380cbdc242c54eb1d2422886c 100644 |
--- a/Source/core/timing/PerformanceUserTiming.cpp |
+++ b/Source/core/timing/PerformanceUserTiming.cpp |
@@ -76,9 +76,8 @@ UserTiming::UserTiming(Performance* performance) |
{ |
} |
-static void insertPerformanceEntry(PerformanceEntryMap& performanceEntryMap, PassRefPtrWillBeRawPtr<PerformanceEntry> performanceEntry) |
+static void insertPerformanceEntry(PerformanceEntryMap& performanceEntryMap, PerformanceEntry* entry) |
{ |
- RefPtrWillBeRawPtr<PerformanceEntry> entry = performanceEntry; |
PerformanceEntryMap::iterator it = performanceEntryMap.find(entry->name()); |
if (it != performanceEntryMap.end()) |
it->value.append(entry); |
@@ -219,11 +218,9 @@ PerformanceEntryVector UserTiming::getMeasures(const String& name) const |
DEFINE_TRACE(UserTiming) |
{ |
-#if ENABLE(OILPAN) |
visitor->trace(m_performance); |
visitor->trace(m_marksMap); |
visitor->trace(m_measuresMap); |
-#endif |
} |
} // namespace blink |