| Index: Source/modules/serviceworkers/FetchHeaderList.cpp
|
| diff --git a/Source/modules/serviceworkers/FetchHeaderList.cpp b/Source/modules/serviceworkers/FetchHeaderList.cpp
|
| index 38e1ebbc44187718190034aaf3c9728118ef2a8e..5eddc105521018c6ffd4bded6567575159c8256c 100644
|
| --- a/Source/modules/serviceworkers/FetchHeaderList.cpp
|
| +++ b/Source/modules/serviceworkers/FetchHeaderList.cpp
|
| @@ -12,14 +12,14 @@
|
|
|
| namespace WebCore {
|
|
|
| -PassRefPtr<FetchHeaderList> FetchHeaderList::create()
|
| +PassRefPtrWillBeRawPtr<FetchHeaderList> FetchHeaderList::create()
|
| {
|
| - return adoptRef(new FetchHeaderList());
|
| + return adoptRefWillBeNoop(new FetchHeaderList());
|
| }
|
|
|
| -PassRefPtr<FetchHeaderList> FetchHeaderList::createCopy()
|
| +PassRefPtrWillBeRawPtr<FetchHeaderList> FetchHeaderList::createCopy()
|
| {
|
| - RefPtr<FetchHeaderList> list(create());
|
| + RefPtrWillBeRawPtr<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();
|
|
|