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

Unified Diff: Source/modules/serviceworkers/Cache.cpp

Issue 478693005: Oilpan: Ship Oilpan for serviceworkers/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
Index: Source/modules/serviceworkers/Cache.cpp
diff --git a/Source/modules/serviceworkers/Cache.cpp b/Source/modules/serviceworkers/Cache.cpp
index c8f780c4e716b643b53c42b348ab89fa38712706..d043155378b970caa6d43af8214d2b4835acdda2 100644
--- a/Source/modules/serviceworkers/Cache.cpp
+++ b/Source/modules/serviceworkers/Cache.cpp
@@ -22,9 +22,9 @@ ScriptPromise rejectAsNotImplemented(ScriptState* scriptState)
}
-PassRefPtrWillBeRawPtr<Cache> Cache::fromWebServiceWorkerCache(WebServiceWorkerCache* webCache)
+Cache* Cache::fromWebServiceWorkerCache(WebServiceWorkerCache* webCache)
{
- return adoptRefWillBeNoop(new Cache(webCache));
+ return new Cache(webCache);
}
// FIXME: Implement these methods.

Powered by Google App Engine
This is Rietveld 408576698