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

Unified Diff: Source/core/fetch/ResourceFetcher.cpp

Issue 788593003: Oilpan: fix build after r186729. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
« 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/core/fetch/ResourceFetcher.cpp
diff --git a/Source/core/fetch/ResourceFetcher.cpp b/Source/core/fetch/ResourceFetcher.cpp
index 56f63974516245f8a53003e865472040178db458..1bea34febb270d3d4233ed775810b0a0e236a5d4 100644
--- a/Source/core/fetch/ResourceFetcher.cpp
+++ b/Source/core/fetch/ResourceFetcher.cpp
@@ -269,8 +269,12 @@ ResourceFetcher::~ResourceFetcher()
clearPreloads();
+#if !ENABLE(OILPAN)
// Make sure no requests still point to this ResourceFetcher
+ // Oilpan: no object reference can be keeping this alive,
+ // so property trivially holds.
ASSERT(!m_loaders || m_loaders->isEmpty());
+#endif
}
Resource* ResourceFetcher::cachedResource(const KURL& resourceURL) const
« 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