Changeset 220872 in webkit


Ignore:
Timestamp:
Aug 17, 2017 1:25:32 PM (7 years ago)
Author:
Matt Baker
Message:

Web Inspector: remove unused private struct from InspectorScriptProfilerAgent
https://bugs.webkit.org/show_bug.cgi?id=175644

Reviewed by Brian Burg.

  • inspector/agents/InspectorScriptProfilerAgent.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r220871 r220872  
     12017-08-17  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: remove unused private struct from InspectorScriptProfilerAgent
     4        https://bugs.webkit.org/show_bug.cgi?id=175644
     5
     6        Reviewed by Brian Burg.
     7
     8        * inspector/agents/InspectorScriptProfilerAgent.h:
     9
    1102017-08-17  Mark Lam  <mark.lam@apple.com>
    211
  • trunk/Source/JavaScriptCore/inspector/agents/InspectorScriptProfilerAgent.h

    r218794 r220872  
    6262
    6363private:
    64     struct Event {
    65         Event(double start, double end) : startTime(start), endTime(end) { }
    66         double startTime { 0 };
    67         double endTime { 0 };
    68     };
    69 
    7064    void addEvent(double startTime, double endTime, JSC::ProfilingReason);
    7165    void trackingComplete();
Note: See TracChangeset for help on using the changeset viewer.