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

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

Issue 478693005: Oilpan: Ship Oilpan for serviceworkers/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | « Source/modules/serviceworkers/FetchEvent.cpp ('k') | Source/modules/serviceworkers/FetchHeaderList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/FetchHeaderList.h
diff --git a/Source/modules/serviceworkers/FetchHeaderList.h b/Source/modules/serviceworkers/FetchHeaderList.h
index 84a591749f9d4aa9d36d168124371358fa301e29..6bfde3d24822006377e3c327b1e1ac9baa0a55b7 100644
--- a/Source/modules/serviceworkers/FetchHeaderList.h
+++ b/Source/modules/serviceworkers/FetchHeaderList.h
@@ -8,7 +8,6 @@
#include "platform/heap/Handle.h"
#include "wtf/OwnPtr.h"
#include "wtf/PassRefPtr.h"
-#include "wtf/RefCounted.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
#include <utility>
@@ -18,11 +17,11 @@ namespace blink {
class Header;
// http://fetch.spec.whatwg.org/#terminology-headers
-class FetchHeaderList FINAL : public RefCountedWillBeGarbageCollectedFinalized<FetchHeaderList> {
+class FetchHeaderList FINAL : public GarbageCollectedFinalized<FetchHeaderList> {
public:
typedef std::pair<String, String> Header;
- static PassRefPtrWillBeRawPtr<FetchHeaderList> create();
- PassRefPtrWillBeRawPtr<FetchHeaderList> createCopy();
+ static FetchHeaderList* create();
+ FetchHeaderList* createCopy();
~FetchHeaderList();
void append(const String&, const String&);
« no previous file with comments | « Source/modules/serviceworkers/FetchEvent.cpp ('k') | Source/modules/serviceworkers/FetchHeaderList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698