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

Side by Side Diff: third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvasRenderingContext.h

Issue 1864243004: Remove RawPtr from Source/modules Part 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 OffscreenCanvasRenderingContext_h 5 #ifndef OffscreenCanvasRenderingContext_h
6 #define OffscreenCanvasRenderingContext_h 6 #define OffscreenCanvasRenderingContext_h
7 7
8 #include "modules/ModulesExport.h" 8 #include "modules/ModulesExport.h"
9 #include "modules/offscreencanvas/OffscreenCanvas.h" 9 #include "modules/offscreencanvas/OffscreenCanvas.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class ImageBitmap; 13 class ImageBitmap;
14 14
15 class MODULES_EXPORT OffscreenCanvasRenderingContext : public GarbageCollectedFi nalized<OffscreenCanvasRenderingContext>, public ScriptWrappable { 15 class MODULES_EXPORT OffscreenCanvasRenderingContext : public GarbageCollectedFi nalized<OffscreenCanvasRenderingContext>, public ScriptWrappable {
16 WTF_MAKE_NONCOPYABLE(OffscreenCanvasRenderingContext); 16 WTF_MAKE_NONCOPYABLE(OffscreenCanvasRenderingContext);
17 public: 17 public:
18 virtual ~OffscreenCanvasRenderingContext() { } 18 virtual ~OffscreenCanvasRenderingContext() { }
19 enum ContextType { 19 enum ContextType {
20 Context2d = 0, 20 Context2d = 0,
21 ContextWebgl = 1, 21 ContextWebgl = 1,
22 ContextWebgl2 = 2, 22 ContextWebgl2 = 2,
23 ContextTypeCount 23 ContextTypeCount
24 }; 24 };
25 static ContextType contextTypeFromId(const String& id); 25 static ContextType contextTypeFromId(const String& id);
26 26
27 OffscreenCanvas* getOffscreenCanvas() const { return m_offscreenCanvas; } 27 OffscreenCanvas* getOffscreenCanvas() const { return m_offscreenCanvas; }
28 virtual ContextType getContextType() const = 0; 28 virtual ContextType getContextType() const = 0;
29 virtual RawPtr<ImageBitmap> transferToImageBitmap(ExceptionState&) = 0; 29 virtual ImageBitmap* transferToImageBitmap(ExceptionState&) = 0;
30 30
31 virtual bool is2d() const { return false; } 31 virtual bool is2d() const { return false; }
32 32
33 protected: 33 protected:
34 OffscreenCanvasRenderingContext(OffscreenCanvas*); 34 OffscreenCanvasRenderingContext(OffscreenCanvas*);
35 DECLARE_VIRTUAL_TRACE(); 35 DECLARE_VIRTUAL_TRACE();
36 36
37 private: 37 private:
38 Member<OffscreenCanvas> m_offscreenCanvas; 38 Member<OffscreenCanvas> m_offscreenCanvas;
39 }; 39 };
40 40
41 } // namespace blink 41 } // namespace blink
42 42
43 #endif // OffscreenCanvasRenderingContext_h 43 #endif // OffscreenCanvasRenderingContext_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698