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

Unified Diff: Source/modules/serviceworkers/Client.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/Client.h ('k') | Source/modules/serviceworkers/Client.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Client.cpp
diff --git a/Source/modules/serviceworkers/Client.cpp b/Source/modules/serviceworkers/Client.cpp
index 5ea1ffa47f5a1b7e2cfded60e5100a3fcaf37c7e..50ecdbeb0ebfe3b1b18f11cefb3534d1e7de2b7a 100644
--- a/Source/modules/serviceworkers/Client.cpp
+++ b/Source/modules/serviceworkers/Client.cpp
@@ -13,9 +13,9 @@
namespace WebCore {
-PassRefPtr<Client> Client::create(unsigned id)
+PassRefPtrWillBeRawPtr<Client> Client::create(unsigned id)
{
- return adoptRef(new Client(id));
+ return adoptRefWillBeNoop(new Client(id));
}
Client::Client(unsigned id)
@@ -24,9 +24,7 @@ Client::Client(unsigned id)
ScriptWrappable::init(this);
}
-Client::~Client()
-{
-}
+DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Client);
void Client::postMessage(ExecutionContext* context, PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& exceptionState)
{
« no previous file with comments | « Source/modules/serviceworkers/Client.h ('k') | Source/modules/serviceworkers/Client.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698