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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, | 66 virtual int databaseDeleteFile(const blink::WebString& vfs_file_name, |
67 bool sync_dir); | 67 bool sync_dir); |
68 virtual long databaseGetFileAttributes( | 68 virtual long databaseGetFileAttributes( |
69 const blink::WebString& vfs_file_name); | 69 const blink::WebString& vfs_file_name); |
70 virtual long long databaseGetFileSize( | 70 virtual long long databaseGetFileSize( |
71 const blink::WebString& vfs_file_name); | 71 const blink::WebString& vfs_file_name); |
72 virtual long long databaseGetSpaceAvailableForOrigin( | 72 virtual long long databaseGetSpaceAvailableForOrigin( |
73 const blink::WebString& origin_identifier); | 73 const blink::WebString& origin_identifier); |
74 virtual blink::WebBlobRegistry* blobRegistry(); | 74 virtual blink::WebBlobRegistry* blobRegistry(); |
75 virtual blink::WebIDBFactory* idbFactory(); | 75 virtual blink::WebIDBFactory* idbFactory(); |
76 virtual blink::WebPlatformDatabaseObserver* databaseObserver(); | 76 virtual blink::WebDatabaseObserver* databaseObserver(); |
77 | 77 |
78 // WebMimeRegistry methods: | 78 // WebMimeRegistry methods: |
79 virtual blink::WebMimeRegistry::SupportsType supportsMIMEType( | 79 virtual blink::WebMimeRegistry::SupportsType supportsMIMEType( |
80 const blink::WebString&); | 80 const blink::WebString&); |
81 virtual blink::WebMimeRegistry::SupportsType supportsImageMIMEType( | 81 virtual blink::WebMimeRegistry::SupportsType supportsImageMIMEType( |
82 const blink::WebString&); | 82 const blink::WebString&); |
83 virtual blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( | 83 virtual blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( |
84 const blink::WebString&); | 84 const blink::WebString&); |
85 virtual blink::WebMimeRegistry::SupportsType supportsMediaMIMEType( | 85 virtual blink::WebMimeRegistry::SupportsType supportsMediaMIMEType( |
86 const blink::WebString&, | 86 const blink::WebString&, |
(...skipping 26 matching lines...) Expand all Loading... |
113 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 113 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
114 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; | 114 scoped_refptr<base::MessageLoopProxy> child_thread_loop_; |
115 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 115 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
116 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 116 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
117 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; | 117 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; |
118 }; | 118 }; |
119 | 119 |
120 } // namespace content | 120 } // namespace content |
121 | 121 |
122 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 122 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |