1 // Copyright 2018 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #include "xfa/fxfa/cxfa_ffdropdown.h" 8 CXFA_FFDropDown(CXFA_Node * node)9CXFA_FFDropDown::CXFA_FFDropDown(CXFA_Node* node) : CXFA_FFField(node) {} 10 11 CXFA_FFDropDown::~CXFA_FFDropDown() = default; 12 AsComboBox()13CXFA_FFComboBox* CXFA_FFDropDown::AsComboBox() { 14 return nullptr; 15 } 16 AsDropDown()17CXFA_FFDropDown* CXFA_FFDropDown::AsDropDown() { 18 return this; 19 } 20