1 // Copyright 2016 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 #ifndef XFA_FWL_CFWL_THEMEBACKGROUND_H_
8 #define XFA_FWL_CFWL_THEMEBACKGROUND_H_
9 
10 #include "core/fxcrt/unowned_ptr.h"
11 #include "xfa/fwl/cfwl_themepart.h"
12 
13 class CXFA_Graphics;
14 class CXFA_GEPath;
15 
16 class CFWL_ThemeBackground final : public CFWL_ThemePart {
17  public:
18   CFWL_ThemeBackground();
19   ~CFWL_ThemeBackground();
20 
21   UnownedPtr<CXFA_Graphics> m_pGraphics;
22   UnownedPtr<CXFA_GEPath> m_pPath;
23 };
24 
25 inline CFWL_ThemeBackground::CFWL_ThemeBackground() = default;
26 
27 inline CFWL_ThemeBackground::~CFWL_ThemeBackground() = default;
28 
29 #endif  // XFA_FWL_CFWL_THEMEBACKGROUND_H_
30