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

Unified Diff: Source/core/inspector/InjectedScriptHost.cpp

Issue 1030163002: Oilpan: fix build after r192519. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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/inspector/InjectedScriptHost.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InjectedScriptHost.cpp
diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp
index 62b8ad5978afd653d439b06a25954f67605c78b8..68bb19261d084957522e24e82f9eeeafd0de5da1 100644
--- a/Source/core/inspector/InjectedScriptHost.cpp
+++ b/Source/core/inspector/InjectedScriptHost.cpp
@@ -31,6 +31,7 @@
#include "config.h"
#include "core/inspector/InjectedScriptHost.h"
+#include "bindings/core/v8/ScriptDebugServer.h"
#include "core/inspector/InspectorConsoleAgent.h"
#include "core/inspector/InspectorDOMAgent.h"
#include "core/inspector/InspectorDebuggerAgent.h"
@@ -64,7 +65,7 @@ DEFINE_TRACE(InjectedScriptHost)
{
visitor->trace(m_consoleAgent);
visitor->trace(m_debuggerAgent);
- visitor->trace(m_inspectCallback);
+ visitor->trace(m_scriptDebugServer);
}
void InjectedScriptHost::disconnect()
@@ -152,4 +153,3 @@ void InjectedScriptHost::unmonitorFunction(const String& scriptId, int lineNumbe
}
} // namespace blink
-
« no previous file with comments | « Source/core/inspector/InjectedScriptHost.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698