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

Unified Diff: third_party/WebKit/public/platform/Platform.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/platform/Platform.h
diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
index c7a244b6d8c49c5092b4e12956fe58912cc74be4..050f06ceb5ff8316c9ce46ec7d2059356cd69d4b 100644
--- a/third_party/WebKit/public/platform/Platform.h
+++ b/third_party/WebKit/public/platform/Platform.h
@@ -463,6 +463,10 @@ public:
WebString driverVersion;
WebString errorMessage;
};
+ enum WillBindToCurrentThread {
+ BindToCurrentThread,
+ DoNotBindToCurrentThread
+ };
// Returns a newly allocated and initialized offscreen context provider,
// backed by an independent context. Returns null if the context cannot be
// created or initialized.
@@ -472,7 +476,8 @@ public:
const ContextAttributes&,
const WebURL& topDocumentURL,
WebGraphicsContext3DProvider* shareContext,
- GraphicsInfo*) { return nullptr; }
+ GraphicsInfo*,
+ WillBindToCurrentThread) { return nullptr; }
// Returns a newly allocated and initialized offscreen context provider,
// backed by the process-wide shared main thread context. Returns null if

Powered by Google App Engine
This is Rietveld 408576698