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

Unified Diff: Source/core/frame/LocalDOMWindow.cpp

Issue 645693003: [DevTools] Console Message Storage moved from top local frame to frame host (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/core/frame/LocalDOMWindow.cpp
diff --git a/Source/core/frame/LocalDOMWindow.cpp b/Source/core/frame/LocalDOMWindow.cpp
index faff8fb2b9f7106d730abacd926d91210639bfab..cc932382a854807fe93de417dbc508711282107c 100644
--- a/Source/core/frame/LocalDOMWindow.cpp
+++ b/Source/core/frame/LocalDOMWindow.cpp
@@ -545,7 +545,7 @@ Page* LocalDOMWindow::page()
void LocalDOMWindow::willDetachFrameHost()
{
m_frame->host()->eventHandlerRegistry().didRemoveAllEventHandlers(*this);
- m_frame->console().messageStorage()->frameWindowDiscarded(this);
+ m_frame->host()->consoleMessageStorage().frameWindowDiscarded(this);
InspectorInstrumentation::frameWindowDiscarded(m_frame, this);
}

Powered by Google App Engine
This is Rietveld 408576698