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

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 bacfa5cebd86cc3bc26973de06fe1fb50b2ec030..94f1ebe0475ecd76aa7c19c565ceca8eaf8c8cc9 100644
--- a/Source/modules/serviceworkers/Cache.h
+++ b/Source/modules/serviceworkers/Cache.h
@@ -9,7 +9,6 @@
#include "bindings/core/v8/ScriptWrappable.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>
@@ -22,10 +21,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