Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(975)

Side by Side Diff: xfa/fxfa/app/xfa_ffapp.cpp

Issue 1803723002: Move xfa/src up to xfa/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/app/xfa_ffapp.h ('k') | xfa/fxfa/app/xfa_ffbarcode.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "xfa/src/fxfa/app/xfa_ffapp.h" 7 #include "xfa/fxfa/app/xfa_ffapp.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "xfa/fxfa/app/xfa_ffdoc.h"
12 #include "xfa/fxfa/app/xfa_ffdochandler.h"
13 #include "xfa/fxfa/app/xfa_ffwidgethandler.h"
14 #include "xfa/fxfa/app/xfa_fontmgr.h"
15 #include "xfa/fxfa/app/xfa_fwladapter.h"
16 #include "xfa/fxfa/app/xfa_fwltheme.h"
11 #include "xfa/include/fwl/core/fwl_widgetmgr.h" 17 #include "xfa/include/fwl/core/fwl_widgetmgr.h"
12 #include "xfa/src/fxfa/app/xfa_ffdoc.h"
13 #include "xfa/src/fxfa/app/xfa_ffdochandler.h"
14 #include "xfa/src/fxfa/app/xfa_ffwidgethandler.h"
15 #include "xfa/src/fxfa/app/xfa_fontmgr.h"
16 #include "xfa/src/fxfa/app/xfa_fwladapter.h"
17 #include "xfa/src/fxfa/app/xfa_fwltheme.h"
18 18
19 CXFA_FileRead::CXFA_FileRead(const CFX_ArrayTemplate<CPDF_Stream*>& streams) { 19 CXFA_FileRead::CXFA_FileRead(const CFX_ArrayTemplate<CPDF_Stream*>& streams) {
20 int32_t iCount = streams.GetSize(); 20 int32_t iCount = streams.GetSize();
21 for (int32_t i = 0; i < iCount; i++) { 21 for (int32_t i = 0; i < iCount; i++) {
22 CPDF_StreamAcc& acc = m_Data.Add(); 22 CPDF_StreamAcc& acc = m_Data.Add();
23 acc.LoadAllData(streams[i]); 23 acc.LoadAllData(streams[i]);
24 } 24 }
25 } 25 }
26 FX_FILESIZE CXFA_FileRead::GetSize() { 26 FX_FILESIZE CXFA_FileRead::GetSize() {
27 FX_DWORD dwSize = 0; 27 FX_DWORD dwSize = 0;
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 } 181 }
182 IFWL_AdapterThreadMgr* CXFA_FFApp::GetThreadMgr() { 182 IFWL_AdapterThreadMgr* CXFA_FFApp::GetThreadMgr() {
183 if (!m_pAdapterThreadMgr) { 183 if (!m_pAdapterThreadMgr) {
184 m_pAdapterThreadMgr = new CFWL_SDAdapterThreadMgr; 184 m_pAdapterThreadMgr = new CFWL_SDAdapterThreadMgr;
185 } 185 }
186 return m_pAdapterThreadMgr; 186 return m_pAdapterThreadMgr;
187 } 187 }
188 IFWL_AdapterTimerMgr* CXFA_FFApp::GetTimerMgr() { 188 IFWL_AdapterTimerMgr* CXFA_FFApp::GetTimerMgr() {
189 return m_pProvider->GetTimerMgr(); 189 return m_pProvider->GetTimerMgr();
190 } 190 }
OLDNEW
« no previous file with comments | « xfa/fxfa/app/xfa_ffapp.h ('k') | xfa/fxfa/app/xfa_ffbarcode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698