Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / dom / canvas / CanvasGradient.cpp
blob272cef0c93ec16fcd964719fbcd16710c9532932
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/. */
5 #include "CanvasGradient.h"
7 #include "mozilla/dom/CanvasRenderingContext2D.h"
9 namespace mozilla::dom {
10 CanvasGradient::CanvasGradient(CanvasRenderingContext2D* aContext, Type aType)
11 : mContext(aContext), mType(aType) {}
13 CanvasGradient::~CanvasGradient() = default;
14 } // namespace mozilla::dom