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

Unified Diff: src/profile-generator.h

Issue 17642009: CPUProfiler: propagate scriptId to the front-end (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: unnecessary line was removed Created 7 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 side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698