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

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

Issue 1170153004: DevTools Timeline: expose HitTest event (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | 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/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"
11 #include "platform/TraceEvent.h" 11 #include "platform/TraceEvent.h"
12 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
13 #include "wtf/Forward.h" 13 #include "wtf/Forward.h"
14 #include "wtf/Functional.h" 14 #include "wtf/Functional.h"
15 15
16 namespace blink { 16 namespace blink {
17 class Animation; 17 class Animation;
18 class CSSStyleSheetResource; 18 class CSSStyleSheetResource;
19 class DescendantInvalidationSet; 19 class DescendantInvalidationSet;
20 class Document; 20 class Document;
21 class Element; 21 class Element;
22 class Event; 22 class Event;
23 class ExecutionContext; 23 class ExecutionContext;
24 class FrameView; 24 class FrameView;
25 class GraphicsLayer; 25 class GraphicsLayer;
26 class HitTestLocation;
27 class HitTestRequest;
28 class HitTestResult;
26 class ImageResource; 29 class ImageResource;
27 class KURL; 30 class KURL;
28 class DeprecatedPaintLayer; 31 class DeprecatedPaintLayer;
29 class LayoutRect; 32 class LayoutRect;
30 class LocalFrame; 33 class LocalFrame;
31 class Node; 34 class Node;
32 class QualifiedName; 35 class QualifiedName;
33 class Page; 36 class Page;
34 class LayoutImage; 37 class LayoutImage;
35 class LayoutObject; 38 class LayoutObject;
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 class InspectorAnimationEvent { 337 class InspectorAnimationEvent {
335 public: 338 public:
336 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation &); 339 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation &);
337 }; 340 };
338 341
339 class InspectorAnimationStateEvent { 342 class InspectorAnimationStateEvent {
340 public: 343 public:
341 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation &); 344 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation &);
342 }; 345 };
343 346
347 class InspectorHitTestEvent {
348 public:
349 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(const HitTes tRequest&, const HitTestLocation&, const HitTestResult&);
350 };
351
344 CORE_EXPORT String toHexString(const void* p); 352 CORE_EXPORT String toHexString(const void* p);
345 CORE_EXPORT void setCallStack(TracedValue*); 353 CORE_EXPORT void setCallStack(TracedValue*);
346 354
347 } // namespace blink 355 } // namespace blink
348 356
349 357
350 #endif // !defined(InspectorTraceEvents_h) 358 #endif // !defined(InspectorTraceEvents_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698