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_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 virtual long long databaseGetSpaceAvailableForOrigin( | 86 virtual long long databaseGetSpaceAvailableForOrigin( |
87 const blink::WebString& origin_identifier); | 87 const blink::WebString& origin_identifier); |
88 virtual blink::WebString signedPublicKeyAndChallengeString( | 88 virtual blink::WebString signedPublicKeyAndChallengeString( |
89 unsigned key_size_index, | 89 unsigned key_size_index, |
90 const blink::WebString& challenge, | 90 const blink::WebString& challenge, |
91 const blink::WebURL& url); | 91 const blink::WebURL& url); |
92 virtual void getPluginList(bool refresh, | 92 virtual void getPluginList(bool refresh, |
93 blink::WebPluginListBuilder* builder); | 93 blink::WebPluginListBuilder* builder); |
94 virtual blink::WebPublicSuffixList* publicSuffixList(); | 94 virtual blink::WebPublicSuffixList* publicSuffixList(); |
95 virtual void screenColorProfile(blink::WebVector<char>* to_profile); | 95 virtual void screenColorProfile(blink::WebVector<char>* to_profile); |
| 96 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); |
96 virtual blink::WebIDBFactory* idbFactory(); | 97 virtual blink::WebIDBFactory* idbFactory(); |
97 virtual blink::WebFileSystem* fileSystem(); | 98 virtual blink::WebFileSystem* fileSystem(); |
98 virtual bool canAccelerate2dCanvas(); | 99 virtual bool canAccelerate2dCanvas(); |
99 virtual bool isThreadedCompositingEnabled(); | 100 virtual bool isThreadedCompositingEnabled(); |
100 virtual double audioHardwareSampleRate(); | 101 virtual double audioHardwareSampleRate(); |
101 virtual size_t audioHardwareBufferSize(); | 102 virtual size_t audioHardwareBufferSize(); |
102 virtual unsigned audioHardwareOutputChannels(); | 103 virtual unsigned audioHardwareOutputChannels(); |
103 virtual blink::WebDatabaseObserver* databaseObserver(); | 104 virtual blink::WebDatabaseObserver* databaseObserver(); |
104 | 105 |
105 // TODO(crogers): remove deprecated API as soon as WebKit calls new API. | 106 // TODO(crogers): remove deprecated API as soon as WebKit calls new API. |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 scoped_refptr<QuotaMessageFilter> quota_message_filter_; | 225 scoped_refptr<QuotaMessageFilter> quota_message_filter_; |
225 | 226 |
226 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; | 227 scoped_ptr<WebDatabaseObserverImpl> web_database_observer_impl_; |
227 | 228 |
228 webkit::WebCompositorSupportImpl compositor_support_; | 229 webkit::WebCompositorSupportImpl compositor_support_; |
229 | 230 |
230 scoped_ptr<WebCryptoImpl> web_crypto_; | 231 scoped_ptr<WebCryptoImpl> web_crypto_; |
231 | 232 |
232 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; | 233 scoped_ptr<ScreenOrientationDispatcher> screen_orientation_dispatcher_; |
233 | 234 |
| 235 scoped_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_; |
| 236 |
234 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 237 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
235 }; | 238 }; |
236 | 239 |
237 } // namespace content | 240 } // namespace content |
238 | 241 |
239 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 242 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |