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

Unified Diff: Source/modules/fetch/FetchManager.cpp

Issue 871873002: Oilpan: fix build after r188805, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/FetchManager.cpp
diff --git a/Source/modules/fetch/FetchManager.cpp b/Source/modules/fetch/FetchManager.cpp
index 60b91eedba2fd1a9fe070ac4ba9c120bd029d439..7da441c1d9fc87a213b524726eea6ac19b568418 100644
--- a/Source/modules/fetch/FetchManager.cpp
+++ b/Source/modules/fetch/FetchManager.cpp
@@ -421,8 +421,9 @@ void FetchManager::stop()
void FetchManager::onLoaderFinished(Loader* loader)
{
- // We don't use remove here, becuase it may cause recursive deletion.
- OwnPtr<Loader> p = m_loaders.take(loader);
+ // We don't use remove here, because it may cause recursive deletion.
+ OwnPtrWillBeRawPtr<Loader> p = m_loaders.take(loader);
+ ALLOW_UNUSED_LOCAL(p);
}
void FetchManager::trace(Visitor* visitor)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698