Index: src/profile-generator.h |
diff --git a/src/profile-generator.h b/src/profile-generator.h |
index 086e5c650749589e3f2b74ec0cc8f6eb242c2b03..187fbacf83f5473bd3f13196dc6f9257463777ee 100644 |
--- a/src/profile-generator.h |
+++ b/src/profile-generator.h |
@@ -69,9 +69,9 @@ class StringsStorage { |
const char* GetCopy(const char* src); |
const char* GetFormatted(const char* format, ...); |
const char* GetVFormatted(const char* format, va_list args); |
- const char* GetName(String* name); |
+ const char* GetName(Name* name); |
const char* GetName(int index); |
- inline const char* GetFunctionName(String* name); |
+ inline const char* GetFunctionName(Name* name); |
inline const char* GetFunctionName(const char* name); |
size_t GetUsedMemorySize() const; |
@@ -296,7 +296,7 @@ class CpuProfilesCollection { |
const char* title, |
double actual_sampling_rate); |
List<CpuProfile*>* Profiles(int security_token_id); |
- const char* GetName(String* name) { |
+ const char* GetName(Name* name) { |
return function_and_resource_names_.GetName(name); |
} |
const char* GetName(int args_count) { |
@@ -308,10 +308,10 @@ class CpuProfilesCollection { |
bool HasDetachedProfiles() { return detached_profiles_.length() > 0; } |
CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- String* name, String* resource_name, int line_number); |
+ Name* name, String* resource_name, int line_number); |
CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, const char* name); |
CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- const char* name_prefix, String* name); |
+ const char* name_prefix, Name* name); |
CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, int args_count); |
CodeEntry* NewCodeEntry(int security_token_id); |
@@ -322,7 +322,7 @@ class CpuProfilesCollection { |
static const int kMaxSimultaneousProfiles = 100; |
private: |
- const char* GetFunctionName(String* name) { |
+ const char* GetFunctionName(Name* name) { |
return function_and_resource_names_.GetFunctionName(name); |
} |
const char* GetFunctionName(const char* name) { |
@@ -395,7 +395,7 @@ class ProfileGenerator { |
explicit ProfileGenerator(CpuProfilesCollection* profiles); |
INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- String* name, |
+ Name* name, |
String* resource_name, |
int line_number)) { |
return profiles_->NewCodeEntry(tag, name, resource_name, line_number); |
@@ -408,7 +408,7 @@ class ProfileGenerator { |
INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
const char* name_prefix, |
- String* name)) { |
+ Name* name)) { |
return profiles_->NewCodeEntry(tag, name_prefix, name); |
} |
@@ -923,7 +923,7 @@ class V8HeapExplorer : public HeapEntriesAllocator { |
int field_offset); |
void SetPropertyReference(HeapObject* parent_obj, |
int parent, |
- String* reference_name, |
+ Name* reference_name, |
Object* child, |
const char* name_format_string = NULL, |
int field_offset = -1); |