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/child/webkitplatformsupport_impl.h" | 9 #include "content/child/webkitplatformsupport_impl.h" |
10 #include "third_party/WebKit/public/platform/WebIDBFactory.h" | 10 #include "third_party/WebKit/public/platform/WebIDBFactory.h" |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 const WebKit::WebString&); | 96 const WebKit::WebString&); |
97 virtual WebKit::WebString mimeTypeForExtension(const WebKit::WebString&); | 97 virtual WebKit::WebString mimeTypeForExtension(const WebKit::WebString&); |
98 virtual WebKit::WebString wellKnownMimeTypeForExtension( | 98 virtual WebKit::WebString wellKnownMimeTypeForExtension( |
99 const WebKit::WebString&); | 99 const WebKit::WebString&); |
100 virtual WebKit::WebString mimeTypeFromFile(const WebKit::WebString&); | 100 virtual WebKit::WebString mimeTypeFromFile(const WebKit::WebString&); |
101 virtual void queryStorageUsageAndQuota( | 101 virtual void queryStorageUsageAndQuota( |
102 const WebKit::WebURL& storage_partition, | 102 const WebKit::WebURL& storage_partition, |
103 WebKit::WebStorageQuotaType, | 103 WebKit::WebStorageQuotaType, |
104 WebKit::WebStorageQuotaCallbacks*) OVERRIDE; | 104 WebKit::WebStorageQuotaCallbacks*) OVERRIDE; |
105 | 105 |
| 106 virtual void appcacheExeHandlerResponse( |
| 107 int requestId, |
| 108 WebKit::WebControllerResponse* response); |
| 109 |
106 private: | 110 private: |
107 | 111 |
108 class FileUtilities; | 112 class FileUtilities; |
109 scoped_ptr<FileUtilities> file_utilities_; | 113 scoped_ptr<FileUtilities> file_utilities_; |
110 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 114 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
111 scoped_ptr<WebFileSystemImpl> web_file_system_; | 115 scoped_ptr<WebFileSystemImpl> web_file_system_; |
112 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 116 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
113 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 117 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
114 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; | 118 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; |
115 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 119 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
116 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 120 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
117 }; | 121 }; |
118 | 122 |
119 } // namespace content | 123 } // namespace content |
120 | 124 |
121 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 125 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |