Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2018)

Unified Diff: Source/web/WebLocalFrameImpl.cpp

Issue 15764004: DevTools: show extension name in console context switcher (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/WebLocalFrameImpl.cpp
diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
index b29dbe64f152eed6977f8b870b52a81721fceff3..3a911ab3bf1271437b7b9202f08052b43b9f37ec 100644
--- a/Source/web/WebLocalFrameImpl.cpp
+++ b/Source/web/WebLocalFrameImpl.cpp
@@ -717,6 +717,12 @@ void WebLocalFrameImpl::setIsolatedWorldContentSecurityPolicy(int worldID, const
DOMWrapperWorld::setIsolatedWorldContentSecurityPolicy(worldID, policy);
}
+void WebLocalFrameImpl::setIsolatedWorldHumanReadableName(int worldID, const WebString& humanReadableName)
+{
+ ASSERT(frame());
+ DOMWrapperWorld::setIsolatedWorldHumanReadableName(worldID, humanReadableName);
+}
+
void WebLocalFrameImpl::addMessageToConsole(const WebConsoleMessage& message)
{
ASSERT(frame());

Powered by Google App Engine
This is Rietveld 408576698