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

Side by Side Diff: Source/core/inspector/InspectorTraceEvents.h

Issue 1043903003: rAF: Introduce FrameRequestCallbackCollection for managing rAF callbacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 InspectorTraceEvents_h 5 #ifndef InspectorTraceEvents_h
6 #define InspectorTraceEvents_h 6 #define InspectorTraceEvents_h
7 7
8 #include "core/css/CSSSelector.h" 8 #include "core/css/CSSSelector.h"
9 #include "platform/EventTracer.h" 9 #include "platform/EventTracer.h"
10 #include "platform/TraceEvent.h" 10 #include "platform/TraceEvent.h"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, int timerId); 148 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, int timerId);
149 }; 149 };
150 150
151 class InspectorTimerFireEvent { 151 class InspectorTimerFireEvent {
152 public: 152 public:
153 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, int timerId); 153 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, int timerId);
154 }; 154 };
155 155
156 class InspectorAnimationFrameEvent { 156 class InspectorAnimationFrameEvent {
157 public: 157 public:
158 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, int callbackId); 158 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, int callbackId);
159 }; 159 };
160 160
161 class InspectorWebSocketCreateEvent { 161 class InspectorWebSocketCreateEvent {
162 public: 162 public:
163 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsi gned long identifier, const KURL&, const String& protocol); 163 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsi gned long identifier, const KURL&, const String& protocol);
164 }; 164 };
165 165
166 class InspectorWebSocketEvent { 166 class InspectorWebSocketEvent {
167 public: 167 public:
168 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsi gned long identifier); 168 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsi gned long identifier);
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 294
295 class InspectorAnimationStateEvent { 295 class InspectorAnimationStateEvent {
296 public: 296 public:
297 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation Player&); 297 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation Player&);
298 }; 298 };
299 299
300 } // namespace blink 300 } // namespace blink
301 301
302 302
303 #endif // !defined(InspectorTraceEvents_h) 303 #endif // !defined(InspectorTraceEvents_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.idl ('k') | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698