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

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

Issue 2200273002: [DevTools] Cleanup mute exceptions, usecounter and deprecations in v8_inspector API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2205913002
Patch Set: Created 4 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: third_party/WebKit/Source/core/frame/FrameConsole.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameConsole.cpp b/third_party/WebKit/Source/core/frame/FrameConsole.cpp
index 65712828edbfe5286fb3c02349d57216c1d32c85..07689dc5087488138289e6e35d64a11b9befdd2f 100644
--- a/third_party/WebKit/Source/core/frame/FrameConsole.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameConsole.cpp
@@ -57,7 +57,8 @@ bool FrameConsole::addMessageToStorage(ConsoleMessage* consoleMessage)
{
if (!m_frame->document() || !m_frame->host())
return false;
- return m_frame->host()->consoleMessageStorage().addConsoleMessage(m_frame->document(), consoleMessage);
+ m_frame->host()->consoleMessageStorage().addConsoleMessage(m_frame->document(), consoleMessage);
+ return true;
}
void FrameConsole::reportMessageToClient(ConsoleMessage* consoleMessage)

Powered by Google App Engine
This is Rietveld 408576698