blob: 7fbb6b0d3d45b1c02209fe697e8091844f9a1aaa [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2017 The PDFium Authors
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#include "core/fxcrt/css/cfx_cssstringvalue.h"
8
9CFX_CSSStringValue::CFX_CSSStringValue(const WideString& value)
kumarashishg826308d2023-06-23 13:21:22 +000010 : CFX_CSSValue(PrimitiveType::kString), value_(value) {}
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070011
kumarashishg826308d2023-06-23 13:21:22 +000012CFX_CSSStringValue::~CFX_CSSStringValue() = default;