v8-profiler.h | v8-profiler.h | |||
---|---|---|---|---|
skipping to change at line 60 | skipping to change at line 60 | |||
/** Returns resource name for script from where the function originates. */ | /** Returns resource name for script from where the function originates. */ | |||
Handle<String> GetScriptResourceName() const; | Handle<String> GetScriptResourceName() const; | |||
/** | /** | |||
* Returns the number, 1-based, of the line where the function originates . | * Returns the number, 1-based, of the line where the function originates . | |||
* kNoLineNumberInfo if no line number information is available. | * kNoLineNumberInfo if no line number information is available. | |||
*/ | */ | |||
int GetLineNumber() const; | int GetLineNumber() const; | |||
/** Returns bailout reason for the function | ||||
* if the optimization was disabled for it. | ||||
*/ | ||||
const char* GetBailoutReason() const; | ||||
/** DEPRECATED. Please use GetHitCount instead. | /** 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. | |||
*/ | */ | |||
V8_DEPRECATED(double GetSelfSamplesCount() const); | V8_DEPRECATED(double GetSelfSamplesCount() const); | |||
/** | /** | |||
* Returns the count of samples where the function was currently executi ng. | * Returns the count of samples where the function was currently executi ng. | |||
*/ | */ | |||
unsigned GetHitCount() const; | unsigned GetHitCount() const; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||