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

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

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.h
diff --git a/Source/modules/serviceworkers/Cache.h b/Source/modules/serviceworkers/Cache.h
index d5b4957c18d0c4e5b66aa48436927e70bf538948..582d6aa6752cf73a2c4587a2450ab827b2e69a1e 100644
--- a/Source/modules/serviceworkers/Cache.h
+++ b/Source/modules/serviceworkers/Cache.h
@@ -11,7 +11,6 @@
#include "public/platform/WebServiceWorkerCacheError.h"
#include "wtf/Forward.h"
#include "wtf/Noncopyable.h"
-#include "wtf/RefCounted.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
#include <v8.h>
@@ -24,10 +23,10 @@ class Request;
class ScriptState;
class WebServiceWorkerCache;
-class Cache FINAL : public RefCountedWillBeGarbageCollected<Cache>, public ScriptWrappable {
+class Cache FINAL : public GarbageCollected<Cache>, public ScriptWrappable {
WTF_MAKE_NONCOPYABLE(Cache);
public:
- static PassRefPtrWillBeRawPtr<Cache> fromWebServiceWorkerCache(WebServiceWorkerCache*);
+ static Cache* fromWebServiceWorkerCache(WebServiceWorkerCache*);
// From Cache.idl:
ScriptPromise match(ScriptState*, Request*, const Dictionary& queryParams);

Powered by Google App Engine
This is Rietveld 408576698