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

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

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: style Created 4 years 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/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/css/CSSSelector.h" 9 #include "core/css/CSSSelector.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
(...skipping 19 matching lines...) Expand all
30 class ContainerNode; 30 class ContainerNode;
31 class Document; 31 class Document;
32 class Element; 32 class Element;
33 class Event; 33 class Event;
34 class ExecutionContext; 34 class ExecutionContext;
35 class FrameView; 35 class FrameView;
36 class GraphicsLayer; 36 class GraphicsLayer;
37 class HitTestLocation; 37 class HitTestLocation;
38 class HitTestRequest; 38 class HitTestRequest;
39 class HitTestResult; 39 class HitTestResult;
40 class ImageResource; 40 class ImageResourceContent;
41 class InvalidationSet; 41 class InvalidationSet;
42 class PaintLayer; 42 class PaintLayer;
43 class LayoutRect; 43 class LayoutRect;
44 class LocalFrame; 44 class LocalFrame;
45 class Node; 45 class Node;
46 class QualifiedName; 46 class QualifiedName;
47 class LayoutImage; 47 class LayoutImage;
48 class LayoutObject; 48 class LayoutObject;
49 class ResourceRequest; 49 class ResourceRequest;
50 class ResourceResponse; 50 class ResourceResponse;
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 286
287 namespace InspectorPaintEvent { 287 namespace InspectorPaintEvent {
288 std::unique_ptr<TracedValue> data(LayoutObject*, 288 std::unique_ptr<TracedValue> data(LayoutObject*,
289 const LayoutRect& clipRect, 289 const LayoutRect& clipRect,
290 const GraphicsLayer*); 290 const GraphicsLayer*);
291 } 291 }
292 292
293 namespace InspectorPaintImageEvent { 293 namespace InspectorPaintImageEvent {
294 std::unique_ptr<TracedValue> data(const LayoutImage&); 294 std::unique_ptr<TracedValue> data(const LayoutImage&);
295 std::unique_ptr<TracedValue> data(const LayoutObject&, const StyleImage&); 295 std::unique_ptr<TracedValue> data(const LayoutObject&, const StyleImage&);
296 std::unique_ptr<TracedValue> data(const LayoutObject*, const ImageResource&); 296 std::unique_ptr<TracedValue> data(const LayoutObject*,
297 const ImageResourceContent&);
297 } 298 }
298 299
299 namespace InspectorCommitLoadEvent { 300 namespace InspectorCommitLoadEvent {
300 std::unique_ptr<TracedValue> data(LocalFrame*); 301 std::unique_ptr<TracedValue> data(LocalFrame*);
301 } 302 }
302 303
303 namespace InspectorMarkLoadEvent { 304 namespace InspectorMarkLoadEvent {
304 std::unique_ptr<TracedValue> data(LocalFrame*); 305 std::unique_ptr<TracedValue> data(LocalFrame*);
305 } 306 }
306 307
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 const HitTestLocation&, 379 const HitTestLocation&,
379 const HitTestResult&); 380 const HitTestResult&);
380 } 381 }
381 382
382 CORE_EXPORT String toHexString(const void* p); 383 CORE_EXPORT String toHexString(const void* p);
383 CORE_EXPORT void setCallStack(TracedValue*); 384 CORE_EXPORT void setCallStack(TracedValue*);
384 385
385 } // namespace blink 386 } // namespace blink
386 387
387 #endif // !defined(InspectorTraceEvents_h) 388 #endif // !defined(InspectorTraceEvents_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698