| Index: Source/modules/serviceworkers/FetchHeaderList.cpp
|
| diff --git a/Source/modules/serviceworkers/FetchHeaderList.cpp b/Source/modules/serviceworkers/FetchHeaderList.cpp
|
| index ee16b5d34a5a4f188e1ac8eb6491b3182ca99e46..f2849aa9c1f3ec568a0238cea8d45b77de03f590 100644
|
| --- a/Source/modules/serviceworkers/FetchHeaderList.cpp
|
| +++ b/Source/modules/serviceworkers/FetchHeaderList.cpp
|
| @@ -11,17 +11,17 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<FetchHeaderList> FetchHeaderList::create()
|
| +FetchHeaderList* FetchHeaderList::create()
|
| {
|
| - return adoptRefWillBeNoop(new FetchHeaderList());
|
| + return new FetchHeaderList();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<FetchHeaderList> FetchHeaderList::createCopy()
|
| +FetchHeaderList* FetchHeaderList::createCopy()
|
| {
|
| - RefPtrWillBeRawPtr<FetchHeaderList> list(create());
|
| + FetchHeaderList* list = create();
|
| for (size_t i = 0; i < m_headerList.size(); ++i)
|
| list->append(m_headerList[i]->first, m_headerList[i]->second);
|
| - return list.release();
|
| + return list;
|
| }
|
|
|
| FetchHeaderList::FetchHeaderList()
|
|
|