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

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

Issue 2580793005: Split the CSSParserContext class out of CSSParserMode into its own file. (Closed)
Patch Set: fix compile Created 3 years, 12 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 /* 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "wtf/HashSet.h" 44 #include "wtf/HashSet.h"
45 #include "wtf/ListHashSet.h" 45 #include "wtf/ListHashSet.h"
46 #include "wtf/Vector.h" 46 #include "wtf/Vector.h"
47 47
48 namespace blink { 48 namespace blink {
49 49
50 class ExceptionState; 50 class ExceptionState;
51 class LocalFrame; 51 class LocalFrame;
52 class PerformanceObserver; 52 class PerformanceObserver;
53 class PerformanceTiming; 53 class PerformanceTiming;
54 class ResourceResponse;
54 class ResourceTimingInfo; 55 class ResourceTimingInfo;
55 class UserTiming; 56 class UserTiming;
56 57
57 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; 58 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>;
58 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>; 59 using PerformanceObservers = HeapListHashSet<Member<PerformanceObserver>>;
59 60
60 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { 61 class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData {
61 friend class PerformanceBaseTest; 62 friend class PerformanceBaseTest;
62 63
63 public: 64 public:
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 PerformanceEntryTypeMask m_observerFilterOptions; 169 PerformanceEntryTypeMask m_observerFilterOptions;
169 PerformanceObservers m_observers; 170 PerformanceObservers m_observers;
170 PerformanceObservers m_activeObservers; 171 PerformanceObservers m_activeObservers;
171 PerformanceObservers m_suspendedObservers; 172 PerformanceObservers m_suspendedObservers;
172 Timer<PerformanceBase> m_deliverObservationsTimer; 173 Timer<PerformanceBase> m_deliverObservationsTimer;
173 }; 174 };
174 175
175 } // namespace blink 176 } // namespace blink
176 177
177 #endif // PerformanceBase_h 178 #endif // PerformanceBase_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/BoxPainter.h ('k') | third_party/WebKit/Source/core/timing/PerformanceBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698