Index: third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvasRenderingContextFactory.h |
diff --git a/third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvasRenderingContextFactory.h b/third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvasRenderingContextFactory.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9892cc7c87a69581afd0d6cf96783c7d04756e03 |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvasRenderingContextFactory.h |
@@ -0,0 +1,31 @@ |
+// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef OffscreenCanvasRenderingContextFactory_h |
+#define OffscreenCanvasRenderingContextFactory_h |
+ |
+#include "wtf/Allocator.h" |
+#include "wtf/PassRefPtr.h" |
+ |
+namespace blink { |
+ |
+class CanvasContextCreationAttributes; |
+class OffscreenCanvas; |
+class OffscreenCanvasRenderingContext; |
+ |
+class OffscreenCanvasRenderingContextFactory { |
+ USING_FAST_MALLOC(OffscreenCanvasRenderingContextFactory); |
+ WTF_MAKE_NONCOPYABLE(OffscreenCanvasRenderingContextFactory); |
+public: |
+ OffscreenCanvasRenderingContextFactory() = default; |
+ virtual ~OffscreenCanvasRenderingContextFactory() { } |
+ |
+ virtual OffscreenCanvasRenderingContext* create(OffscreenCanvas*, const CanvasContextCreationAttributes&) = 0; |
+ virtual OffscreenCanvasRenderingContext::ContextType contextType() const = 0; |
+ virtual void onError(OffscreenCanvas*, const String& error) = 0; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // OffscreenCanvasRenderingContextFactory_h |