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

Unified Diff: Source/core/inspector/TimelineRecordFactory.h

Issue 212953003: TimelinePanel: provide scriptId in FunctionCall event. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/TimelineRecordFactory.h
diff --git a/Source/core/inspector/TimelineRecordFactory.h b/Source/core/inspector/TimelineRecordFactory.h
index b2d4e82875bbda06dde7a6c8218fea165a54c806..16ef92d36e026c2436e3729b3384651d3eae4517 100644
--- a/Source/core/inspector/TimelineRecordFactory.h
+++ b/Source/core/inspector/TimelineRecordFactory.h
@@ -52,7 +52,7 @@ public:
static PassRefPtr<TypeBuilder::Timeline::TimelineEvent> createBackgroundRecord(double startTime, const String& thread, const String& type, PassRefPtr<JSONObject> data);
static PassRefPtr<JSONObject> createGCEventData(size_t usedHeapSizeDelta);
- static PassRefPtr<JSONObject> createFunctionCallData(const String& scriptName, int scriptLine);
+ static PassRefPtr<JSONObject> createFunctionCallData(int scriptId, const String& scriptName, int scriptLine);
static PassRefPtr<JSONObject> createEventDispatchData(const Event&);
static PassRefPtr<JSONObject> createGenericTimerData(int timerId);
static PassRefPtr<JSONObject> createTimerInstallData(int timerId, int timeout, bool singleShot);

Powered by Google App Engine
This is Rietveld 408576698