Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

Issue 2267993002: Expose if we are using swiftshader via WebGraphicsContext3DProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: softwarerendering: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 blink::WebPluginListBuilder* builder) override; 132 blink::WebPluginListBuilder* builder) override;
133 blink::WebPublicSuffixList* publicSuffixList() override; 133 blink::WebPublicSuffixList* publicSuffixList() override;
134 blink::WebScrollbarBehavior* scrollbarBehavior() override; 134 blink::WebScrollbarBehavior* scrollbarBehavior() override;
135 blink::WebIDBFactory* idbFactory() override; 135 blink::WebIDBFactory* idbFactory() override;
136 blink::WebServiceWorkerCacheStorage* cacheStorage( 136 blink::WebServiceWorkerCacheStorage* cacheStorage(
137 const blink::WebSecurityOrigin& security_origin) override; 137 const blink::WebSecurityOrigin& security_origin) override;
138 blink::WebFileSystem* fileSystem() override; 138 blink::WebFileSystem* fileSystem() override;
139 blink::WebString fileSystemCreateOriginIdentifier( 139 blink::WebString fileSystemCreateOriginIdentifier(
140 const blink::WebSecurityOrigin& origin) override; 140 const blink::WebSecurityOrigin& origin) override;
141 141
142 bool canAccelerate2dCanvas() override;
143 bool isThreadedCompositingEnabled() override; 142 bool isThreadedCompositingEnabled() override;
144 bool isThreadedAnimationEnabled() override; 143 bool isThreadedAnimationEnabled() override;
145 double audioHardwareSampleRate() override; 144 double audioHardwareSampleRate() override;
146 size_t audioHardwareBufferSize() override; 145 size_t audioHardwareBufferSize() override;
147 unsigned audioHardwareOutputChannels() override; 146 unsigned audioHardwareOutputChannels() override;
148 blink::WebDatabaseObserver* databaseObserver() override; 147 blink::WebDatabaseObserver* databaseObserver() override;
149 148
150 blink::WebAudioDevice* createAudioDevice( 149 blink::WebAudioDevice* createAudioDevice(
151 size_t buffer_size, 150 size_t buffer_size,
152 unsigned input_channels, 151 unsigned input_channels,
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; 308 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;
310 309
311 mojom::URLLoaderFactoryPtr url_loader_factory_; 310 mojom::URLLoaderFactoryPtr url_loader_factory_;
312 311
313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
314 }; 313 };
315 314
316 } // namespace content 315 } // namespace content
317 316
318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698