| 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_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 135 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 136 blink::WebIDBFactory* idbFactory() override; | 136 blink::WebIDBFactory* idbFactory() override; |
| 137 blink::WebServiceWorkerCacheStorage* cacheStorage( | 137 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 138 const blink::WebSecurityOrigin& security_origin) override; | 138 const blink::WebSecurityOrigin& security_origin) override; |
| 139 blink::WebFileSystem* fileSystem() override; | 139 blink::WebFileSystem* fileSystem() override; |
| 140 blink::WebString fileSystemCreateOriginIdentifier( | 140 blink::WebString fileSystemCreateOriginIdentifier( |
| 141 const blink::WebSecurityOrigin& origin) override; | 141 const blink::WebSecurityOrigin& origin) override; |
| 142 | 142 |
| 143 bool isThreadedCompositingEnabled() override; | 143 bool isThreadedCompositingEnabled() override; |
| 144 bool isThreadedAnimationEnabled() override; | 144 bool isThreadedAnimationEnabled() override; |
| 145 bool isGPUCompositingEnabled() override; |
| 145 double audioHardwareSampleRate() override; | 146 double audioHardwareSampleRate() override; |
| 146 size_t audioHardwareBufferSize() override; | 147 size_t audioHardwareBufferSize() override; |
| 147 unsigned audioHardwareOutputChannels() override; | 148 unsigned audioHardwareOutputChannels() override; |
| 148 blink::WebDatabaseObserver* databaseObserver() override; | 149 blink::WebDatabaseObserver* databaseObserver() override; |
| 149 | 150 |
| 150 blink::WebAudioDevice* createAudioDevice( | 151 blink::WebAudioDevice* createAudioDevice( |
| 151 size_t buffer_size, | 152 size_t buffer_size, |
| 152 unsigned input_channels, | 153 unsigned input_channels, |
| 153 unsigned channels, | 154 unsigned channels, |
| 154 double sample_rate, | 155 double sample_rate, |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 312 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 312 | 313 |
| 313 mojom::URLLoaderFactoryPtr url_loader_factory_; | 314 mojom::URLLoaderFactoryPtr url_loader_factory_; |
| 314 | 315 |
| 315 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 316 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 316 }; | 317 }; |
| 317 | 318 |
| 318 } // namespace content | 319 } // namespace content |
| 319 | 320 |
| 320 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 321 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |