Index: include/v8-profiler.h |
diff --git a/include/v8-profiler.h b/include/v8-profiler.h |
index 8d5e4baa3beaeada58116c787a0f40d7c60b8d22..1f189032af4960d9fe29719321c966326c1c853c 100644 |
--- a/include/v8-profiler.h |
+++ b/include/v8-profiler.h |
@@ -96,9 +96,6 @@ class V8_EXPORT CpuProfileNode { |
*/ |
class V8_EXPORT CpuProfile { |
public: |
- /** Returns CPU profile UID (assigned by the profiler.) */ |
- unsigned GetUid() const; |
- |
/** Returns CPU profile title. */ |
Handle<String> GetTitle() const; |
@@ -151,15 +148,6 @@ class V8_EXPORT CpuProfiler { |
void SetSamplingInterval(int us); |
/** |
- * Returns the number of profiles collected (doesn't include |
- * profiles that are being collected at the moment of call.) |
- */ |
- int GetProfileCount(); |
- |
- /** Returns a profile by index. */ |
- const CpuProfile* GetCpuProfile(int index); |
- |
- /** |
* Starts collecting CPU profile. Title may be an empty string. It |
* is allowed to have several profiles being collected at |
* once. Attempts to start collecting several profiles with the same |
@@ -179,13 +167,6 @@ class V8_EXPORT CpuProfiler { |
const CpuProfile* StopCpuProfiling(Handle<String> title); |
/** |
- * Deletes all existing profiles, also cancelling all profiling |
- * activity. All previously returned pointers to profiles and their |
- * contents become invalid after this call. |
- */ |
- void DeleteAllCpuProfiles(); |
- |
- /** |
* Tells the profiler whether the embedder is idle. |
*/ |
void SetIdle(bool is_idle); |