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

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceObserver.h

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 #ifndef PerformanceObserver_h 5 #ifndef PerformanceObserver_h
6 #define PerformanceObserver_h 6 #define PerformanceObserver_h
7 7
8 #include "bindings/core/v8/TraceWrapperMember.h" 8 #include "bindings/core/v8/TraceWrapperMember.h"
9 #include "core/CoreExport.h" 9 #include "core/CoreExport.h"
10 #include "core/timing/PerformanceEntry.h" 10 #include "core/timing/PerformanceEntry.h"
11 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
12 #include "wtf/Vector.h" 12 #include "platform/wtf/Vector.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class ExecutionContext; 16 class ExecutionContext;
17 class ExceptionState; 17 class ExceptionState;
18 class PerformanceBase; 18 class PerformanceBase;
19 class PerformanceObserver; 19 class PerformanceObserver;
20 class PerformanceObserverCallback; 20 class PerformanceObserverCallback;
21 class PerformanceObserverInit; 21 class PerformanceObserverInit;
22 22
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 TraceWrapperMember<PerformanceObserverCallback> callback_; 55 TraceWrapperMember<PerformanceObserverCallback> callback_;
56 WeakMember<PerformanceBase> performance_; 56 WeakMember<PerformanceBase> performance_;
57 PerformanceEntryVector performance_entries_; 57 PerformanceEntryVector performance_entries_;
58 PerformanceEntryTypeMask filter_options_; 58 PerformanceEntryTypeMask filter_options_;
59 bool is_registered_; 59 bool is_registered_;
60 }; 60 };
61 61
62 } // namespace blink 62 } // namespace blink
63 63
64 #endif // PerformanceObserver_h 64 #endif // PerformanceObserver_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698