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

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

Issue 517213003: Oilpan: fix build after r181083 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Re-intro ~FrameConsole non-Oilpan 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
« no previous file with comments | « Source/core/frame/FrameConsole.h ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameConsole.cpp
diff --git a/Source/core/frame/FrameConsole.cpp b/Source/core/frame/FrameConsole.cpp
index 0f0fcbd7b4f0c4eabd5e23b38ba1505530d9103d..667418edbadc5cc897f3c0ca2623811f1c6035c4 100644
--- a/Source/core/frame/FrameConsole.cpp
+++ b/Source/core/frame/FrameConsole.cpp
@@ -55,9 +55,7 @@ FrameConsole::FrameConsole(LocalFrame& frame)
{
}
-FrameConsole::~FrameConsole()
-{
-}
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(FrameConsole);
void FrameConsole::addMessage(PassRefPtrWillBeRawPtr<ConsoleMessage> prpConsoleMessage)
{
@@ -155,4 +153,9 @@ void FrameConsole::adoptWorkerConsoleMessages(WorkerGlobalScopeProxy* proxy)
InspectorInstrumentation::adoptWorkerConsoleMessages(m_frame.document(), proxy);
}
+void FrameConsole::trace(Visitor* visitor)
+{
+ visitor->trace(m_consoleMessageStorage);
+}
+
} // namespace blink
« no previous file with comments | « Source/core/frame/FrameConsole.h ('k') | Source/core/frame/LocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698