HomeSort by relevance Sort by last modified time
    Searched refs:liveEvents (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
TimelineManager.js 63 * @param {string=} liveEvents
68 start: function(maxCallStackDepth, liveEvents, includeCounters, includeGPUEvents, callback)
78 this.target().timelineAgent().start(maxCallStackDepth, true, liveEvents, includeCounters, includeGPUEvents, callback);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.cpp 76 static const char liveEvents[] = "liveEvents";
332 setLiveEvents(m_state->getString(TimelineAgentState::liveEvents));
353 void InspectorTimelineAgent::start(ErrorString* errorString, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents)
374 if (liveEvents)
375 setLiveEvents(*liveEvents);
381 m_state->setString(TimelineAgentState::liveEvents, liveEvents ? *liveEvents : "");
431 m_state->setString(TimelineAgentState::liveEvents, "");
    [all...]
InspectorTimelineAgent.h 131 virtual void start(ErrorString*, const int* maxCallStackDepth, const bool* bufferEvents, const String* liveEvents, const bool* includeCounters, const bool* includeGPUEvents) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineModelImpl.js 59 var liveEvents = [ WebInspector.TimelineModel.RecordType.BeginFrame,
63 this._currentTarget.timelineManager.start(maxStackFrames, liveEvents.join(","), captureMemory, includeGPUEvents, this._fireRecordingStarted.bind(this));

Completed in 50 milliseconds