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

Side by Side Diff: core/fxge/win32/fx_win32_device.cpp

Issue 2381063002: Move core/fxcodec/codec/include and core/fxcodec/include files up (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 | « core/fxge/skia/fx_skia_device.cpp ('k') | fpdfsdk/DEPS » ('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 "core/fxcrt/include/fx_system.h" 7 #include "core/fxcrt/include/fx_system.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <memory> 10 #include <memory>
11 #include <vector> 11 #include <vector>
12 12
13 #if _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_DESKTOP_ 13 #if _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_DESKTOP_
14 #include <crtdbg.h> 14 #include <crtdbg.h>
15 15
16 #include "core/fxcodec/include/fx_codec.h" 16 #include "core/fxcodec/fx_codec.h"
17 #include "core/fxcrt/include/fx_memory.h" 17 #include "core/fxcrt/include/fx_memory.h"
18 18
19 #ifndef _SKIA_SUPPORT_ 19 #ifndef _SKIA_SUPPORT_
20 #include "core/fxge/agg/fx_agg_driver.h" 20 #include "core/fxge/agg/fx_agg_driver.h"
21 #endif 21 #endif
22 22
23 #include "core/fxge/dib/dib_int.h" 23 #include "core/fxge/dib/dib_int.h"
24 #include "core/fxge/ge/cfx_folderfontinfo.h" 24 #include "core/fxge/ge/cfx_folderfontinfo.h"
25 #include "core/fxge/ge/fx_text_int.h" 25 #include "core/fxge/ge/fx_text_int.h"
26 #include "core/fxge/include/cfx_fontmapper.h" 26 #include "core/fxge/include/cfx_fontmapper.h"
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 int device_type = ::GetDeviceCaps(hDC, TECHNOLOGY); 1387 int device_type = ::GetDeviceCaps(hDC, TECHNOLOGY);
1388 int obj_type = ::GetObjectType(hDC); 1388 int obj_type = ::GetObjectType(hDC);
1389 bool use_printer = device_type == DT_RASPRINTER || 1389 bool use_printer = device_type == DT_RASPRINTER ||
1390 device_type == DT_PLOTTER || obj_type == OBJ_ENHMETADC; 1390 device_type == DT_PLOTTER || obj_type == OBJ_ENHMETADC;
1391 if (use_printer) 1391 if (use_printer)
1392 return new CGdiPrinterDriver(hDC); 1392 return new CGdiPrinterDriver(hDC);
1393 return new CGdiDisplayDriver(hDC); 1393 return new CGdiDisplayDriver(hDC);
1394 } 1394 }
1395 1395
1396 #endif // _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_ 1396 #endif // _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_
OLDNEW
« no previous file with comments | « core/fxge/skia/fx_skia_device.cpp ('k') | fpdfsdk/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698