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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.h

Issue 2514733002: Scheduler: Deprecate CancellableTaskFactory in favor of WebTaskRunner::postCancellableTask (3) (Closed)
Patch Set: rebase Created 4 years, 1 month 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/Source/modules/webgl/WebGLTimerQueryEXT.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.h b/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.h
index 662f5396589696ad3d11b0ea2cac3189457d4602..b07a763398a16e110a69cb9cd430952b81c1152f 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.h
@@ -6,7 +6,7 @@
#define WebGLTimerQueryEXT_h
#include "modules/webgl/WebGLContextObject.h"
-#include "platform/scheduler/CancellableTaskFactory.h"
+#include "platform/WebTaskRunner.h"
namespace gpu {
namespace gles2 {
@@ -16,8 +16,6 @@ class GLES2Interface;
namespace blink {
-class WebTaskRunner;
-
class WebGLTimerQueryEXT : public WebGLContextObject {
DEFINE_WRAPPERTYPEINFO();
@@ -55,7 +53,7 @@ class WebGLTimerQueryEXT : public WebGLContextObject {
GLuint64 m_queryResult;
std::unique_ptr<WebTaskRunner> m_taskRunner;
- std::unique_ptr<CancellableTaskFactory> m_cancellableTaskFactory;
+ TaskHandle m_taskHandle;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLQuery.cpp ('k') | third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698