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

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

Issue 898593002: DevTools: use per-LocalFrame instrumenting agents instead of per-Page ones. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed assertion Created 5 years, 10 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 class InspectorTimeStampEvent { 270 class InspectorTimeStampEvent {
271 public: 271 public:
272 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, const String& message); 272 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex t*, const String& message);
273 }; 273 };
274 274
275 class InspectorTracingSessionIdForWorkerEvent { 275 class InspectorTracingSessionIdForWorkerEvent {
276 public: 276 public:
277 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, int workerId, WorkerThread*); 277 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, int workerId, WorkerThread*);
278 }; 278 };
279 279
280 class InspectorTracingStartedInPage { 280 class InspectorTracingStartedInFrame {
281 public: 281 public:
282 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, Page*); 282 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, LocalFrame*);
283 }; 283 };
284 284
285 class InspectorSetLayerTreeId { 285 class InspectorSetLayerTreeId {
286 public: 286 public:
287 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, int layerTreeId); 287 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, int layerTreeId);
288 }; 288 };
289 289
290 class InspectorBeginFrameEvent { 290 class InspectorBeginFrameEvent {
291 public: 291 public:
292 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(int frameId); 292 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(int frameId);
293 }; 293 };
294 294
295 class InspectorAnimationEvent { 295 class InspectorAnimationEvent {
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 class InspectorAnimationStateEvent { 300 class InspectorAnimationStateEvent {
301 public: 301 public:
302 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation Player&); 302 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation Player&);
303 }; 303 };
304 304
305 } // namespace blink 305 } // namespace blink
306 306
307 307
308 #endif // !defined(InspectorTraceEvents_h) 308 #endif // !defined(InspectorTraceEvents_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorTimelineAgent.cpp ('k') | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698