Index: src/profile-generator.h |
diff --git a/src/profile-generator.h b/src/profile-generator.h |
index 0ed5a0c15b7a0a48132c02475940506daf39798e..761291e1215d8f4e0b16609220ab6af293280890 100644 |
--- a/src/profile-generator.h |
+++ b/src/profile-generator.h |
@@ -400,33 +400,6 @@ class ProfileGenerator { |
public: |
explicit ProfileGenerator(CpuProfilesCollection* profiles); |
- INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- Name* name, |
- String* resource_name, |
- int line_number)) { |
- return profiles_->NewCodeEntry(tag, name, resource_name, line_number); |
- } |
- |
- INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- const char* name)) { |
- return profiles_->NewCodeEntry(tag, name); |
- } |
- |
- INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- const char* name_prefix, |
- Name* name)) { |
- return profiles_->NewCodeEntry(tag, name_prefix, name); |
- } |
- |
- INLINE(CodeEntry* NewCodeEntry(Logger::LogEventsAndTags tag, |
- int args_count)) { |
- return profiles_->NewCodeEntry(tag, args_count); |
- } |
- |
- INLINE(CodeEntry* NewCodeEntry(int security_token_id)) { |
- return profiles_->NewCodeEntry(security_token_id); |
- } |
- |
void RecordTickSample(const TickSample& sample); |
INLINE(CodeMap* code_map()) { return &code_map_; } |