| 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 631d080844c2fc4b39d87e981ae9e0064610149b..40192f0f85a710830b55452c893d22427646172a 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.cpp
|
| @@ -292,18 +292,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
|
|
|