Index: src/profile-generator.h |
diff --git a/src/profile-generator.h b/src/profile-generator.h |
index 7a5e1f2fc56ed90d61840356b15da63d51f297c4..2ca0f38777e7027fc7db4fc94abf02f215feda59 100644 |
--- a/src/profile-generator.h |
+++ b/src/profile-generator.h |
@@ -99,6 +99,7 @@ class CodeEntry { |
INLINE(CodeEntry(Logger::LogEventsAndTags tag, |
const char* name_prefix, |
const char* name, |
+ int script_id, |
const char* resource_name, |
int line_number, |
int security_token_id)); |
@@ -108,6 +109,7 @@ class CodeEntry { |
INLINE(const char* name_prefix() const) { return name_prefix_; } |
INLINE(bool has_name_prefix() const) { return name_prefix_[0] != '\0'; } |
INLINE(const char* name() const) { return name_; } |
+ INLINE(int script_id() const) { return script_id_; } |
INLINE(const char* resource_name() const) { return resource_name_; } |
INLINE(int line_number() const) { return line_number_; } |
INLINE(void set_shared_id(int shared_id)) { shared_id_ = shared_id; } |
@@ -130,6 +132,7 @@ class CodeEntry { |
Logger::LogEventsAndTags tag_; |
const char* name_prefix_; |
const char* name_; |
+ int script_id_; |
const char* resource_name_; |
int line_number_; |
int shared_id_; |
@@ -322,8 +325,8 @@ class CpuProfilesCollection { |
void RemoveProfile(CpuProfile* profile); |
bool HasDetachedProfiles() { return detached_profiles_.length() > 0; } |
- CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- Name* name, String* resource_name, int line_number); |
+ CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, Name* name, |
+ int script_id, String* resource_name, int line_number); |
CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, const char* name); |
CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
const char* name_prefix, Name* name); |