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

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

Issue 1161913002: Remove outdated FIXME (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add comments Created 5 years, 6 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
« no previous file with comments | « no previous file | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/css/CSSSelector.h" 9 #include "core/css/CSSSelector.h"
10 #include "platform/EventTracer.h" 10 #include "platform/EventTracer.h"
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 // not depend on this value. 155 // not depend on this value.
156 typedef const char LayoutInvalidationReasonForTracing[]; 156 typedef const char LayoutInvalidationReasonForTracing[];
157 157
158 class CORE_EXPORT InspectorLayoutInvalidationTrackingEvent { 158 class CORE_EXPORT InspectorLayoutInvalidationTrackingEvent {
159 public: 159 public:
160 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect*, LayoutInvalidationReasonForTracing); 160 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect*, LayoutInvalidationReasonForTracing);
161 }; 161 };
162 162
163 class InspectorPaintInvalidationTrackingEvent { 163 class InspectorPaintInvalidationTrackingEvent {
164 public: 164 public:
165 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect*, const LayoutObject* paintContainer); 165 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect*, const LayoutObject& paintContainer);
166 }; 166 };
167 167
168 class InspectorScrollInvalidationTrackingEvent { 168 class InspectorScrollInvalidationTrackingEvent {
169 public: 169 public:
170 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect&); 170 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect&);
171 }; 171 };
172 172
173 class InspectorSendRequestEvent { 173 class InspectorSendRequestEvent {
174 public: 174 public:
175 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long i dentifier, LocalFrame*, const ResourceRequest&); 175 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long i dentifier, LocalFrame*, const ResourceRequest&);
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation &); 341 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation &);
342 }; 342 };
343 343
344 CORE_EXPORT String toHexString(const void* p); 344 CORE_EXPORT String toHexString(const void* p);
345 CORE_EXPORT void setCallStack(TracedValue*); 345 CORE_EXPORT void setCallStack(TracedValue*);
346 346
347 } // namespace blink 347 } // namespace blink
348 348
349 349
350 #endif // !defined(InspectorTraceEvents_h) 350 #endif // !defined(InspectorTraceEvents_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698