| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 6 #define CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "content/common/webkitplatformsupport_impl.h" | 9 #include "content/common/webkitplatformsupport_impl.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebMimeRegistry.h" | 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebMimeRegistry.h" |
| 11 | 11 |
| 12 class WebFileSystemImpl; | |
| 13 | |
| 14 namespace WebKit { | 12 namespace WebKit { |
| 15 class WebFileUtilities; | 13 class WebFileUtilities; |
| 16 } | 14 } |
| 17 | 15 |
| 18 namespace content { | 16 namespace content { |
| 17 class WebFileSystemImpl; |
| 19 | 18 |
| 20 class WorkerWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl, | 19 class WorkerWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl, |
| 21 public WebKit::WebMimeRegistry { | 20 public WebKit::WebMimeRegistry { |
| 22 public: | 21 public: |
| 23 WorkerWebKitPlatformSupportImpl(); | 22 WorkerWebKitPlatformSupportImpl(); |
| 24 virtual ~WorkerWebKitPlatformSupportImpl(); | 23 virtual ~WorkerWebKitPlatformSupportImpl(); |
| 25 | 24 |
| 26 // WebKitPlatformSupport methods: | 25 // WebKitPlatformSupport methods: |
| 27 virtual WebKit::WebClipboard* clipboard(); | 26 virtual WebKit::WebClipboard* clipboard(); |
| 28 virtual WebKit::WebMimeRegistry* mimeRegistry(); | 27 virtual WebKit::WebMimeRegistry* mimeRegistry(); |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 94 |
| 96 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 95 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 97 | 96 |
| 98 scoped_ptr<WebFileSystemImpl> web_file_system_; | 97 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 99 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 98 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 100 }; | 99 }; |
| 101 | 100 |
| 102 } // namespace content | 101 } // namespace content |
| 103 | 102 |
| 104 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 103 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |