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

Unified Diff: third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h

Issue 1748163003: Add rendering context and rendering 2D context to OffscreenCanvas (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove CanvasRenderingContextBase Created 4 years, 10 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/Source/core/html/canvas/CanvasRenderingContext.h
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
index c798c97ebba90cb6bdf5a8114c073bd5bba64662..d2f84fe971dbaeebdf5d590198a770f295fa7b49 100644
--- a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h
@@ -28,7 +28,6 @@
#include "core/CoreExport.h"
#include "core/html/HTMLCanvasElement.h"
-#include "platform/heap/Handle.h"
#include "wtf/HashSet.h"
#include "wtf/Noncopyable.h"
#include "wtf/text/StringHash.h"
@@ -44,8 +43,8 @@ class HTMLCanvasElement;
class ImageData;
class CORE_EXPORT CanvasRenderingContext : public NoBaseWillBeGarbageCollectedFinalized<CanvasRenderingContext>, public ScriptWrappable {
- WTF_MAKE_NONCOPYABLE(CanvasRenderingContext);
- USING_FAST_MALLOC_WILL_BE_REMOVED(CanvasRenderingContext);
+WTF_MAKE_NONCOPYABLE(CanvasRenderingContext);
+USING_FAST_MALLOC_WILL_BE_REMOVED(CanvasRenderingContext);
public:
virtual ~CanvasRenderingContext() { }
@@ -126,7 +125,6 @@ public:
protected:
CanvasRenderingContext(HTMLCanvasElement*);
DECLARE_VIRTUAL_TRACE();
-
virtual void stop() = 0;
private:

Powered by Google App Engine
This is Rietveld 408576698