Index: third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
index 96a5263a2bbbf9da369d1431f6cbfa9ae867c72f..80fe949a73862d84cd103fc9d2e6787f75036a11 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp |
@@ -163,9 +163,9 @@ void InspectorRuntimeAgent::disable(ErrorString* errorString) |
m_v8RuntimeAgent->disable(errorString); |
} |
-void InspectorRuntimeAgent::addExecutionContextToFrontend(int executionContextId, const String& type, const String& origin, const String& humanReadableName, const String& frameId) |
+void InspectorRuntimeAgent::reportExecutionContextCreated(int executionContextId, const String& type, const String& origin, const String& humanReadableName, const String& frameId) |
{ |
- m_v8RuntimeAgent->addExecutionContextToFrontend(executionContextId, type, origin, humanReadableName, frameId); |
+ m_v8RuntimeAgent->reportExecutionContextCreated(executionContextId, type, origin, humanReadableName, frameId); |
} |
} // namespace blink |