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; |
}; |