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

Unified Diff: trunk/Source/modules/serviceworkers/WaitUntilObserver.cpp

Issue 158583002: Revert 166694 "Move serviceworker/ module to oilpan" (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 10 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
Index: trunk/Source/modules/serviceworkers/WaitUntilObserver.cpp
===================================================================
--- trunk/Source/modules/serviceworkers/WaitUntilObserver.cpp (revision 166772)
+++ trunk/Source/modules/serviceworkers/WaitUntilObserver.cpp (working copy)
@@ -16,8 +16,6 @@
namespace WebCore {
-DEFINE_GC_INFO(WaitUntilObserver);
-
class WaitUntilObserver::ThenFunction FINAL : public ScriptFunction {
public:
enum ResolveType {
@@ -25,13 +23,13 @@
Rejected,
};
- static PassOwnPtr<ScriptFunction> create(PassRefPtrWillBeRawPtr<WaitUntilObserver> observer, ResolveType type)
+ static PassOwnPtr<ScriptFunction> create(PassRefPtr<WaitUntilObserver> observer, ResolveType type)
{
return adoptPtr(new ThenFunction(toIsolate(observer->executionContext()), observer, type));
}
private:
- ThenFunction(v8::Isolate* isolate, PassRefPtrWillBeRawPtr<WaitUntilObserver> observer, ResolveType type)
+ ThenFunction(v8::Isolate* isolate, PassRefPtr<WaitUntilObserver> observer, ResolveType type)
: ScriptFunction(isolate)
, m_observer(observer)
, m_resolveType(type)
@@ -49,13 +47,13 @@
return value;
}
- RefPtrWillBePersistent<WaitUntilObserver> m_observer;
+ RefPtr<WaitUntilObserver> m_observer;
ResolveType m_resolveType;
};
-PassRefPtrWillBeRawPtr<WaitUntilObserver> WaitUntilObserver::create(ExecutionContext* context, int eventID)
+PassRefPtr<WaitUntilObserver> WaitUntilObserver::create(ExecutionContext* context, int eventID)
{
- return adoptRefWillBeNoop(new WaitUntilObserver(context, eventID));
+ return adoptRef(new WaitUntilObserver(context, eventID));
}
WaitUntilObserver::~WaitUntilObserver()
« no previous file with comments | « trunk/Source/modules/serviceworkers/WaitUntilObserver.h ('k') | trunk/Source/web/ServiceWorkerGlobalScopeProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698