Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/inspector/AsyncCallTracker.cpp

Issue 1377813002: Oilpan: fix build after r351269. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use a WeakPersistent<InjectedScriptManager> instead Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/inspector/AsyncCallTracker.cpp
diff --git a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.cpp b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.cpp
index 52046515f36822d5f36f8baefd2b9937b566d421..e017c0c2d96080bac841a458600b7b6c3697d919 100644
--- a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.cpp
+++ b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.cpp
@@ -426,7 +426,6 @@ DEFINE_TRACE(AsyncCallTracker)
{
#if ENABLE(OILPAN)
visitor->trace(m_executionContextDataMap);
- visitor->trace(m_debuggerAgent);
visitor->trace(m_instrumentingAgents);
#endif
}

Powered by Google App Engine