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

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

Issue 923953002: Move rendering/RenderImage* to layout/LayoutImage* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
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 12 matching lines...) Expand all
23 class FrameView; 23 class FrameView;
24 class GraphicsLayer; 24 class GraphicsLayer;
25 class ImageResource; 25 class ImageResource;
26 class KURL; 26 class KURL;
27 class Layer; 27 class Layer;
28 class LayoutRect; 28 class LayoutRect;
29 class LocalFrame; 29 class LocalFrame;
30 class Node; 30 class Node;
31 class QualifiedName; 31 class QualifiedName;
32 class Page; 32 class Page;
33 class RenderImage; 33 class LayoutImage;
34 class LayoutObject; 34 class LayoutObject;
35 class ResourceRequest; 35 class ResourceRequest;
36 class ResourceResponse; 36 class ResourceResponse;
37 class StyleChangeReasonForTracing; 37 class StyleChangeReasonForTracing;
38 class StyleImage; 38 class StyleImage;
39 class TracedValue; 39 class TracedValue;
40 class WorkerThread; 40 class WorkerThread;
41 class XMLHttpRequest; 41 class XMLHttpRequest;
42 42
43 class InspectorLayoutEvent { 43 class InspectorLayoutEvent {
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 "data", \ 205 "data", \
206 InspectorLayerInvalidationTrackingEvent::data((LAYER), (REASON))) 206 InspectorLayerInvalidationTrackingEvent::data((LAYER), (REASON)))
207 207
208 class InspectorPaintEvent { 208 class InspectorPaintEvent {
209 public: 209 public:
210 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(LayoutObject*, const LayoutRect& clipRect, const GraphicsLayer*); 210 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(LayoutObject*, const LayoutRect& clipRect, const GraphicsLayer*);
211 }; 211 };
212 212
213 class InspectorPaintImageEvent { 213 class InspectorPaintImageEvent {
214 public: 214 public:
215 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const RenderIma ge&); 215 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutIma ge&);
216 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect&, const StyleImage&); 216 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect&, const StyleImage&);
217 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect*, const ImageResource&); 217 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const LayoutObj ect*, const ImageResource&);
218 }; 218 };
219 219
220 class InspectorCommitLoadEvent { 220 class InspectorCommitLoadEvent {
221 public: 221 public:
222 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(LocalFrame*); 222 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(LocalFrame*);
223 }; 223 };
224 224
225 class InspectorMarkLoadEvent { 225 class InspectorMarkLoadEvent {
(...skipping 68 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.h ('k') | Source/core/inspector/InspectorTraceEvents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698