| Index: src/profile-generator.h
|
| diff --git a/src/profile-generator.h b/src/profile-generator.h
|
| index 7861ccd81785f3670a3d609ede6321717e0d5eac..0cc397ed9bf24583d5d12f69b078157b19176312 100644
|
| --- a/src/profile-generator.h
|
| +++ b/src/profile-generator.h
|
| @@ -209,12 +209,15 @@ class CpuProfile {
|
| void AddPath(const Vector<CodeEntry*>& path);
|
| void CalculateTotalTicksAndSamplingRate();
|
|
|
| - INLINE(const char* title() const) { return title_; }
|
| - INLINE(unsigned uid() const) { return uid_; }
|
| - INLINE(const ProfileTree* top_down() const) { return &top_down_; }
|
| + const char* title() const { return title_; }
|
| + unsigned uid() const { return uid_; }
|
| + const ProfileTree* top_down() const { return &top_down_; }
|
|
|
| - INLINE(int samples_count() const) { return samples_.length(); }
|
| - INLINE(ProfileNode* sample(int index) const) { return samples_.at(index); }
|
| + int samples_count() const { return samples_.length(); }
|
| + ProfileNode* sample(int index) const { return samples_.at(index); }
|
| +
|
| + int64_t start_time_us() const { return start_time_us_; }
|
| + int64_t end_time_us() const { return end_time_us_; }
|
|
|
| void UpdateTicksScale();
|
|
|
| @@ -225,8 +228,8 @@ class CpuProfile {
|
| const char* title_;
|
| unsigned uid_;
|
| bool record_samples_;
|
| - double start_time_ms_;
|
| - double end_time_ms_;
|
| + int64_t start_time_us_;
|
| + int64_t end_time_us_;
|
| List<ProfileNode*> samples_;
|
| ProfileTree top_down_;
|
|
|
|
|