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

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

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.h
===================================================================
--- trunk/Source/modules/serviceworkers/WaitUntilObserver.h (revision 166772)
+++ trunk/Source/modules/serviceworkers/WaitUntilObserver.h (working copy)
@@ -6,7 +6,6 @@
#define WaitUntilObserver_h
#include "core/dom/ContextLifecycleObserver.h"
-#include "heap/Handle.h"
#include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h"
#include "wtf/Forward.h"
#include "wtf/RefCounted.h"
@@ -18,11 +17,10 @@
// Created for each InstallPhaseEvent instance.
class WaitUntilObserver FINAL :
- public RefCountedWillBeGarbageCollectedFinalized<WaitUntilObserver>,
- public ContextLifecycleObserver {
- DECLARE_GC_INFO;
+ public ContextLifecycleObserver,
+ public RefCounted<WaitUntilObserver> {
public:
- static PassRefPtrWillBeRawPtr<WaitUntilObserver> create(ExecutionContext*, int eventID);
+ static PassRefPtr<WaitUntilObserver> create(ExecutionContext*, int eventID);
~WaitUntilObserver();
@@ -34,8 +32,6 @@
// the given promise is resolved or rejected.
void waitUntil(const ScriptValue&);
- void trace(Visitor*) { }
-
private:
class ThenFunction;
« no previous file with comments | « trunk/Source/modules/serviceworkers/ServiceWorker.idl ('k') | trunk/Source/modules/serviceworkers/WaitUntilObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698