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

Side by Side Diff: third_party/WebKit/Source/core/animation/Animation.cpp

Issue 2391383002: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "core/animation/KeyframeEffect.h" 35 #include "core/animation/KeyframeEffect.h"
36 #include "core/animation/css/CSSAnimations.h" 36 #include "core/animation/css/CSSAnimations.h"
37 #include "core/dom/Document.h" 37 #include "core/dom/Document.h"
38 #include "core/dom/ExceptionCode.h" 38 #include "core/dom/ExceptionCode.h"
39 #include "core/dom/StyleChangeReason.h" 39 #include "core/dom/StyleChangeReason.h"
40 #include "core/events/AnimationPlaybackEvent.h" 40 #include "core/events/AnimationPlaybackEvent.h"
41 #include "core/frame/UseCounter.h" 41 #include "core/frame/UseCounter.h"
42 #include "core/inspector/InspectorInstrumentation.h" 42 #include "core/inspector/InspectorInstrumentation.h"
43 #include "core/inspector/InspectorTraceEvents.h" 43 #include "core/inspector/InspectorTraceEvents.h"
44 #include "platform/RuntimeEnabledFeatures.h" 44 #include "platform/RuntimeEnabledFeatures.h"
45 #include "platform/TraceEvent.h"
46 #include "platform/animation/CompositorAnimationPlayer.h" 45 #include "platform/animation/CompositorAnimationPlayer.h"
46 #include "platform/tracing/TraceEvent.h"
47 #include "public/platform/Platform.h" 47 #include "public/platform/Platform.h"
48 #include "public/platform/WebCompositorSupport.h" 48 #include "public/platform/WebCompositorSupport.h"
49 #include "wtf/MathExtras.h" 49 #include "wtf/MathExtras.h"
50 #include "wtf/PtrUtil.h" 50 #include "wtf/PtrUtil.h"
51 51
52 namespace blink { 52 namespace blink {
53 53
54 namespace { 54 namespace {
55 55
56 static unsigned nextSequenceNumber() { 56 static unsigned nextSequenceNumber() {
(...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 visitor->trace(m_timeline); 1111 visitor->trace(m_timeline);
1112 visitor->trace(m_pendingFinishedEvent); 1112 visitor->trace(m_pendingFinishedEvent);
1113 visitor->trace(m_pendingCancelledEvent); 1113 visitor->trace(m_pendingCancelledEvent);
1114 visitor->trace(m_finishedPromise); 1114 visitor->trace(m_finishedPromise);
1115 visitor->trace(m_readyPromise); 1115 visitor->trace(m_readyPromise);
1116 EventTargetWithInlineData::trace(visitor); 1116 EventTargetWithInlineData::trace(visitor);
1117 ActiveDOMObject::trace(visitor); 1117 ActiveDOMObject::trace(visitor);
1118 } 1118 }
1119 1119
1120 } // namespace blink 1120 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698