| Index: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp
|
| index c31f62129820d9eeb202312b7a1aad864ad5b452..b813717e919f5c77e6ea323c6d81b799c4c8b988 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp
|
| @@ -290,18 +290,4 @@ bool V8ProfilerAgentImpl::isRecording() const
|
| return m_recordingCPUProfile || !m_startedProfiles.isEmpty();
|
| }
|
|
|
| -void V8ProfilerAgentImpl::idleFinished()
|
| -{
|
| - if (!isRecording())
|
| - return;
|
| - m_isolate->GetCpuProfiler()->SetIdle(false);
|
| -}
|
| -
|
| -void V8ProfilerAgentImpl::idleStarted()
|
| -{
|
| - if (!isRecording())
|
| - return;
|
| - m_isolate->GetCpuProfiler()->SetIdle(true);
|
| -}
|
| -
|
| } // namespace blink
|
|
|