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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 28 matching lines...) Expand all
39 #include "platform/Timer.h" 39 #include "platform/Timer.h"
40 #include "platform/heap/Handle.h" 40 #include "platform/heap/Handle.h"
41 #include "wtf/Forward.h" 41 #include "wtf/Forward.h"
42 #include "wtf/HashSet.h" 42 #include "wtf/HashSet.h"
43 #include "wtf/ListHashSet.h" 43 #include "wtf/ListHashSet.h"
44 #include "wtf/Vector.h" 44 #include "wtf/Vector.h"
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class DOMWindow; 48 class DOMWindow;
49 class Document;
50 class ExceptionState; 49 class ExceptionState;
51 class PerformanceObserver; 50 class PerformanceObserver;
52 class PerformanceTiming; 51 class PerformanceTiming;
53 class ResourceTimingInfo; 52 class ResourceTimingInfo;
54 class UserTiming; 53 class UserTiming;
55 54
56 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; 55 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>;
57 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; 56 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>;
58 57
59 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { 58 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData {
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 PerformanceEntryTypeMask m_observerFilterOptions; 141 PerformanceEntryTypeMask m_observerFilterOptions;
143 PerformanceObservers m_observers; 142 PerformanceObservers m_observers;
144 PerformanceObservers m_activeObservers; 143 PerformanceObservers m_activeObservers;
145 PerformanceObservers m_suspendedObservers; 144 PerformanceObservers m_suspendedObservers;
146 Timer<PerformanceBase> m_deliverObservationsTimer; 145 Timer<PerformanceBase> m_deliverObservationsTimer;
147 }; 146 };
148 147
149 } // namespace blink 148 } // namespace blink
150 149
151 #endif // PerformanceBase_h 150 #endif // PerformanceBase_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698