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

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceObserverEntryList.cpp

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/timing/PerformanceObserverEntryList.h" 5 #include "core/timing/PerformanceObserverEntryList.h"
6 6
7 #include <algorithm>
7 #include "core/timing/PerformanceEntry.h" 8 #include "core/timing/PerformanceEntry.h"
8 #include "wtf/StdLibExtras.h" 9 #include "platform/wtf/StdLibExtras.h"
9 #include <algorithm>
10 10
11 namespace blink { 11 namespace blink {
12 12
13 PerformanceObserverEntryList::PerformanceObserverEntryList( 13 PerformanceObserverEntryList::PerformanceObserverEntryList(
14 const PerformanceEntryVector& entry_vector) 14 const PerformanceEntryVector& entry_vector)
15 : performance_entries_(entry_vector) {} 15 : performance_entries_(entry_vector) {}
16 16
17 PerformanceObserverEntryList::~PerformanceObserverEntryList() {} 17 PerformanceObserverEntryList::~PerformanceObserverEntryList() {}
18 18
19 PerformanceEntryVector PerformanceObserverEntryList::getEntries() const { 19 PerformanceEntryVector PerformanceObserverEntryList::getEntries() const {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 std::sort(entries.begin(), entries.end(), 66 std::sort(entries.begin(), entries.end(),
67 PerformanceEntry::StartTimeCompareLessThan); 67 PerformanceEntry::StartTimeCompareLessThan);
68 return entries; 68 return entries;
69 } 69 }
70 70
71 DEFINE_TRACE(PerformanceObserverEntryList) { 71 DEFINE_TRACE(PerformanceObserverEntryList) {
72 visitor->Trace(performance_entries_); 72 visitor->Trace(performance_entries_);
73 } 73 }
74 74
75 } // namespace blink 75 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698