CanvasGradient.cpp (507B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #include "CanvasGradient.h" 6 7 #include "mozilla/dom/CanvasRenderingContext2D.h" 8 9 namespace mozilla::dom { 10 CanvasGradient::CanvasGradient(CanvasRenderingContext2D* aContext, Type aType) 11 : mContext(aContext), mType(aType) {} 12 13 CanvasGradient::~CanvasGradient() = default; 14 } // namespace mozilla::dom