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

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

Issue 1914233006: Implement offscreenCanvas.getContext('webgl') on a worker thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kbr@'s comment Created 4 years, 7 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
« no previous file with comments | « components/test_runner/test_plugin.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 double frame_rate, 169 double frame_rate,
170 blink::WebMediaStreamTrack* track) override; 170 blink::WebMediaStreamTrack* track) override;
171 void createHTMLVideoElementCapturer( 171 void createHTMLVideoElementCapturer(
172 blink::WebMediaStream* web_media_stream, 172 blink::WebMediaStream* web_media_stream,
173 blink::WebMediaPlayer* web_media_player) override; 173 blink::WebMediaPlayer* web_media_player) override;
174 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override; 174 blink::WebImageCaptureFrameGrabber* createImageCaptureFrameGrabber() override;
175 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider( 175 blink::WebGraphicsContext3DProvider* createOffscreenGraphicsContext3DProvider(
176 const blink::Platform::ContextAttributes& attributes, 176 const blink::Platform::ContextAttributes& attributes,
177 const blink::WebURL& top_document_web_url, 177 const blink::WebURL& top_document_web_url,
178 blink::WebGraphicsContext3DProvider* share_provider, 178 blink::WebGraphicsContext3DProvider* share_provider,
179 blink::Platform::GraphicsInfo* gl_info) override; 179 blink::Platform::GraphicsInfo* gl_info,
180 blink::Platform::WillBindToCurrentThread) override;
180 blink::WebGraphicsContext3DProvider* 181 blink::WebGraphicsContext3DProvider*
181 createSharedOffscreenGraphicsContext3DProvider() override; 182 createSharedOffscreenGraphicsContext3DProvider() override;
182 blink::WebCompositorSupport* compositorSupport() override; 183 blink::WebCompositorSupport* compositorSupport() override;
183 blink::WebString convertIDNToUnicode(const blink::WebString& host) override; 184 blink::WebString convertIDNToUnicode(const blink::WebString& host) override;
184 blink::ServiceRegistry* serviceRegistry() override; 185 blink::ServiceRegistry* serviceRegistry() override;
185 void startListening(blink::WebPlatformEventType, 186 void startListening(blink::WebPlatformEventType,
186 blink::WebPlatformEventListener*) override; 187 blink::WebPlatformEventListener*) override;
187 void stopListening(blink::WebPlatformEventType) override; 188 void stopListening(blink::WebPlatformEventType) override;
188 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, 189 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition,
189 blink::WebStorageQuotaType, 190 blink::WebStorageQuotaType,
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
305 306
306 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; 307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_;
307 308
308 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
309 }; 310 };
310 311
311 } // namespace content 312 } // namespace content
312 313
313 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « components/test_runner/test_plugin.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698