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

Unified Diff: Source/modules/serviceworkers/FetchEvent.h

Issue 185393006: Revert "Add [WillBeGarbageCollected] to Event.idl" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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: Source/modules/serviceworkers/FetchEvent.h
diff --git a/Source/modules/serviceworkers/FetchEvent.h b/Source/modules/serviceworkers/FetchEvent.h
index cca053690d60349d62c43d2f55f79e1f2dadbb95..5f5bccf7c30b92fafbe9ead121a8c9bc37fd9e64 100644
--- a/Source/modules/serviceworkers/FetchEvent.h
+++ b/Source/modules/serviceworkers/FetchEvent.h
@@ -18,16 +18,14 @@ class RespondWithObserver;
// service worker's response.
class FetchEvent FINAL : public Event {
public:
- static PassRefPtrWillBeRawPtr<FetchEvent> create();
- static PassRefPtrWillBeRawPtr<FetchEvent> create(PassRefPtr<RespondWithObserver>);
+ static PassRefPtr<FetchEvent> create();
+ static PassRefPtr<FetchEvent> create(PassRefPtr<RespondWithObserver>);
virtual ~FetchEvent() { }
void respondWith(const ScriptValue&);
virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual void trace(Visitor*) OVERRIDE;
-
protected:
FetchEvent();
explicit FetchEvent(PassRefPtr<RespondWithObserver>);

Powered by Google App Engine
This is Rietveld 408576698