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

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

Issue 384633002: Oilpan: add transition types to remaining Fetch and ServiceWorker objects (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Another rebase Created 6 years, 5 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/FetchHeaderList.h ('k') | Source/modules/serviceworkers/FetchRequestData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/modules/serviceworkers/FetchHeaderList.h ('k') | Source/modules/serviceworkers/FetchRequestData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698