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

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

Issue 809023003: Oilpan: fix build after r187362. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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/inspector/AsyncCallStackTracker.cpp
diff --git a/Source/core/inspector/AsyncCallStackTracker.cpp b/Source/core/inspector/AsyncCallStackTracker.cpp
index b7c15794893eda5b08c2d19ddf45772cc6f1575c..41a1a7fbd706b85d2cb979af3a0c484dc6cb4a7b 100644
--- a/Source/core/inspector/AsyncCallStackTracker.cpp
+++ b/Source/core/inspector/AsyncCallStackTracker.cpp
@@ -109,7 +109,7 @@ public:
void remove(typename MapType::KeyPeekInType key)
{
ASSERT(m_tracker);
- RefPtr<AsyncCallChain> chain = m_asyncCallChains.take(key);
+ RefPtrWillBeRawPtr<AsyncCallChain> chain = m_asyncCallChains.take(key);
if (chain)
m_tracker->m_debuggerAgent->didCompleteAsyncOperation(chain.get());
}
« no previous file with comments | « no previous file | Source/core/inspector/InspectorDebuggerAgent.h » ('j') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698