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/blink_platform_impl.h" | 9 #include "content/child/blink_platform_impl.h" |
10 #include "third_party/WebKit/public/platform/WebIDBFactory.h" | 10 #include "third_party/WebKit/public/platform/WebIDBFactory.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 virtual blink::WebIDBFactory* idbFactory(); | 76 virtual blink::WebIDBFactory* idbFactory(); |
77 virtual blink::WebDatabaseObserver* databaseObserver(); | 77 virtual blink::WebDatabaseObserver* databaseObserver(); |
78 | 78 |
79 // WebMimeRegistry methods: | 79 // WebMimeRegistry methods: |
80 virtual blink::WebMimeRegistry::SupportsType supportsMIMEType( | 80 virtual blink::WebMimeRegistry::SupportsType supportsMIMEType( |
81 const blink::WebString&); | 81 const blink::WebString&); |
82 virtual blink::WebMimeRegistry::SupportsType supportsImageMIMEType( | 82 virtual blink::WebMimeRegistry::SupportsType supportsImageMIMEType( |
83 const blink::WebString&); | 83 const blink::WebString&); |
84 virtual blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( | 84 virtual blink::WebMimeRegistry::SupportsType supportsJavaScriptMIMEType( |
85 const blink::WebString&); | 85 const blink::WebString&); |
86 virtual blink::WebMimeRegistry::SupportsType supportsDartMIMEType( | |
87 const blink::WebString&); | |
88 virtual blink::WebMimeRegistry::SupportsType supportsMediaMIMEType( | 86 virtual blink::WebMimeRegistry::SupportsType supportsMediaMIMEType( |
89 const blink::WebString&, | 87 const blink::WebString&, |
90 const blink::WebString&, | 88 const blink::WebString&, |
91 const blink::WebString&); | 89 const blink::WebString&); |
92 virtual bool supportsMediaSourceMIMEType( | 90 virtual bool supportsMediaSourceMIMEType( |
93 const blink::WebString&, | 91 const blink::WebString&, |
94 const blink::WebString&); | 92 const blink::WebString&); |
95 virtual bool supportsEncryptedMediaMIMEType(const blink::WebString&, | 93 virtual bool supportsEncryptedMediaMIMEType(const blink::WebString&, |
96 const blink::WebString&, | 94 const blink::WebString&, |
97 const blink::WebString&); | 95 const blink::WebString&); |
(...skipping 23 matching lines...) Expand all Loading... |
121 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; | 119 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
122 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 120 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
123 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; | 121 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; |
124 | 122 |
125 DISALLOW_COPY_AND_ASSIGN(WorkerWebKitPlatformSupportImpl); | 123 DISALLOW_COPY_AND_ASSIGN(WorkerWebKitPlatformSupportImpl); |
126 }; | 124 }; |
127 | 125 |
128 } // namespace content | 126 } // namespace content |
129 | 127 |
130 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 128 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |