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

Unified Diff: Source/core/timing/PerformanceUserTiming.h

Issue 663693005: Use C++11 features in core/timing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed review. Created 6 years, 2 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
« no previous file with comments | « Source/core/timing/PerformanceTiming.cpp ('k') | Source/core/timing/PerformanceUserTiming.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/PerformanceUserTiming.h
diff --git a/Source/core/timing/PerformanceUserTiming.h b/Source/core/timing/PerformanceUserTiming.h
index d342877c529f8c76c6a628507eee52a9ca69e0a1..9fab04a9c0ff9d4839842ed9809c41a547a9b4de 100644
--- a/Source/core/timing/PerformanceUserTiming.h
+++ b/Source/core/timing/PerformanceUserTiming.h
@@ -42,7 +42,7 @@ class Performance;
class PerformanceEntry;
typedef unsigned long long (PerformanceTiming::*NavigationTimingFunction)() const;
-typedef WillBeHeapHashMap<String, PerformanceEntryVector> PerformanceEntryMap;
+using PerformanceEntryMap = WillBeHeapHashMap<String, PerformanceEntryVector>;
class UserTiming : public RefCountedWillBeGarbageCollected<UserTiming> {
public:
« no previous file with comments | « Source/core/timing/PerformanceTiming.cpp ('k') | Source/core/timing/PerformanceUserTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698