• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2017 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "xfa/fde/css/cfde_csscustomproperty.h"
6 
CFDE_CSSCustomProperty(const CFX_WideString & name,const CFX_WideString & value)7 CFDE_CSSCustomProperty::CFDE_CSSCustomProperty(const CFX_WideString& name,
8                                                const CFX_WideString& value)
9     : name_(name), value_(value) {}
10 
CFDE_CSSCustomProperty(const CFDE_CSSCustomProperty & prop)11 CFDE_CSSCustomProperty::CFDE_CSSCustomProperty(
12     const CFDE_CSSCustomProperty& prop)
13     : name_(prop.name_), value_(prop.value_) {}
14 
~CFDE_CSSCustomProperty()15 CFDE_CSSCustomProperty::~CFDE_CSSCustomProperty() {}
16