| Index: include/v8-profiler.h
|
| diff --git a/include/v8-profiler.h b/include/v8-profiler.h
|
| index e538f4a84068e6836567453eddb1b00b7d0ccbd4..f2128ce0bed6bb35ebcbdca72cfd6e56d892f892 100644
|
| --- a/include/v8-profiler.h
|
| +++ b/include/v8-profiler.h
|
| @@ -61,27 +61,20 @@ class V8_EXPORT CpuProfileNode {
|
| * Returns total (self + children) execution time of the function,
|
| * in milliseconds, estimated by samples count.
|
| */
|
| - V8_DEPRECATED(double GetTotalTime() const);
|
| + double GetTotalTime() const;
|
|
|
| /**
|
| * Returns self execution time of the function, in milliseconds,
|
| * estimated by samples count.
|
| */
|
| - V8_DEPRECATED(double GetSelfTime() const);
|
| + double GetSelfTime() const;
|
|
|
| /** Returns the count of samples where function exists. */
|
| - V8_DEPRECATED(double GetTotalSamplesCount() const);
|
| + double GetTotalSamplesCount() const;
|
|
|
| - /** DEPRECATED. Please use GetHitCount instead.
|
| - * Returns the count of samples where function was currently executing.
|
| - */
|
| + /** Returns the count of samples where function was currently executing. */
|
| double GetSelfSamplesCount() const;
|
|
|
| - /**
|
| - * Returns the count of samples where the function was currently executing.
|
| - */
|
| - unsigned GetHitCount() const;
|
| -
|
| /** Returns function entry UID. */
|
| unsigned GetCallUid() const;
|
|
|
|
|