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

Unified Diff: Source/core/workers/SharedWorkerRepositoryClient.h

Issue 180743028: Oilpan: move Worker objects to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have SharedWorkerRepositoryClient use transition type(s) Created 6 years, 9 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/core/workers/SharedWorker.idl ('k') | Source/core/workers/Worker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/SharedWorkerRepositoryClient.h
diff --git a/Source/core/workers/SharedWorkerRepositoryClient.h b/Source/core/workers/SharedWorkerRepositoryClient.h
index 607bc294264347dd4a5a16dea5b12e6b42b31bff..a8ebc3b5d7ac6bf74e63319f649d8315c01d9e7a 100644
--- a/Source/core/workers/SharedWorkerRepositoryClient.h
+++ b/Source/core/workers/SharedWorkerRepositoryClient.h
@@ -31,6 +31,7 @@
#ifndef SharedWorkerRepositoryClient_h
#define SharedWorkerRepositoryClient_h
+#include "heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/Noncopyable.h"
@@ -51,7 +52,7 @@ public:
SharedWorkerRepositoryClient() { }
virtual ~SharedWorkerRepositoryClient() { }
- virtual void connect(PassRefPtr<SharedWorker>, PassOwnPtr<blink::WebMessagePortChannel>, const KURL&, const String& name, ExceptionState&) = 0;
+ virtual void connect(PassRefPtrWillBeRawPtr<SharedWorker>, PassOwnPtr<blink::WebMessagePortChannel>, const KURL&, const String& name, ExceptionState&) = 0;
virtual void documentDetached(Document*) = 0;
};
« no previous file with comments | « Source/core/workers/SharedWorker.idl ('k') | Source/core/workers/Worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698