| Index: content/worker/worker_webkitplatformsupport_impl.h
|
| ===================================================================
|
| --- content/worker/worker_webkitplatformsupport_impl.h (revision 186267)
|
| +++ content/worker/worker_webkitplatformsupport_impl.h (working copy)
|
| @@ -15,12 +15,13 @@
|
| }
|
|
|
| namespace content {
|
| +class ThreadSafeSender;
|
| class WebFileSystemImpl;
|
|
|
| class WorkerWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl,
|
| public WebKit::WebMimeRegistry {
|
| public:
|
| - WorkerWebKitPlatformSupportImpl();
|
| + explicit WorkerWebKitPlatformSupportImpl(ThreadSafeSender* sender);
|
| virtual ~WorkerWebKitPlatformSupportImpl();
|
|
|
| // WebKitPlatformSupport methods:
|
| @@ -91,11 +92,10 @@
|
|
|
| class FileUtilities;
|
| scoped_ptr<FileUtilities> file_utilities_;
|
| -
|
| scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
|
| -
|
| scoped_ptr<WebFileSystemImpl> web_file_system_;
|
| scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_;
|
| + scoped_refptr<ThreadSafeSender> thread_safe_sender_;
|
| };
|
|
|
| } // namespace content
|
|
|