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

Side by Side Diff: third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvas.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "modules/offscreencanvas/OffscreenCanvas.h" 5 #include "modules/offscreencanvas/OffscreenCanvas.h"
6 6
7 #include "core/dom/ExceptionCode.h" 7 #include "core/dom/ExceptionCode.h"
8 #if !ENABLE(OILPAN) 8 #if !ENABLE(OILPAN)
9 #include "core/frame/ImageBitmap.h" // So ~RefPtr can call unref() 9 #include "core/frame/ImageBitmap.h" // So ~RefPtr can call unref()
10 #endif 10 #endif
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 } else { 58 } else {
59 m_context = factory->create(this, attributes); 59 m_context = factory->create(this, attributes);
60 } 60 }
61 61
62 // TODO: When there're more than one context type implemented in the future, 62 // TODO: When there're more than one context type implemented in the future,
63 // the return type here should be changed to base class of all Offscreen 63 // the return type here should be changed to base class of all Offscreen
64 // context types. 64 // context types.
65 return static_cast<OffscreenCanvasRenderingContext2D*>(m_context.get()); 65 return static_cast<OffscreenCanvasRenderingContext2D*>(m_context.get());
66 } 66 }
67 67
68 PassRefPtrWillBeRawPtr<ImageBitmap> OffscreenCanvas::transferToImageBitmap(Excep tionState& exceptionState) 68 RawPtr<ImageBitmap> OffscreenCanvas::transferToImageBitmap(ExceptionState& excep tionState)
69 { 69 {
70 if (!m_context) { 70 if (!m_context) {
71 exceptionState.throwDOMException(InvalidStateError, "Cannot transfer an ImageBitmap from an OffscreenCanvas with no context"); 71 exceptionState.throwDOMException(InvalidStateError, "Cannot transfer an ImageBitmap from an OffscreenCanvas with no context");
72 return nullptr; 72 return nullptr;
73 } 73 }
74 RefPtrWillBeRawPtr<ImageBitmap> image = m_context->transferToImageBitmap(exc eptionState); 74 RawPtr<ImageBitmap> image = m_context->transferToImageBitmap(exceptionState) ;
75 if (!image) { 75 if (!image) {
76 // Undocumented exception (not in spec) 76 // Undocumented exception (not in spec)
77 exceptionState.throwDOMException(V8GeneralError, "Out of memory"); 77 exceptionState.throwDOMException(V8GeneralError, "Out of memory");
78 } 78 }
79 return image.release(); 79 return image.release();
80 } 80 }
81 81
82 OffscreenCanvasRenderingContext2D* OffscreenCanvas::renderingContext() const 82 OffscreenCanvasRenderingContext2D* OffscreenCanvas::renderingContext() const
83 { 83 {
84 // TODO: When there're more than one context type implemented in the future, 84 // TODO: When there're more than one context type implemented in the future,
(...skipping 21 matching lines...) Expand all
106 ASSERT(!renderingContextFactories()[type]); 106 ASSERT(!renderingContextFactories()[type]);
107 renderingContextFactories()[type] = renderingContextFactory; 107 renderingContextFactories()[type] = renderingContextFactory;
108 } 108 }
109 109
110 DEFINE_TRACE(OffscreenCanvas) 110 DEFINE_TRACE(OffscreenCanvas)
111 { 111 {
112 visitor->trace(m_context); 112 visitor->trace(m_context);
113 } 113 }
114 114
115 } // namespace blink 115 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698