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

Side by Side Diff: core/src/fxge/apple/fx_apple_platform.cpp

Issue 1427633010: Fix relative includes within core/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month 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/src/fxge/apple/apple_int.h ('k') | core/src/fxge/apple/fx_mac_imp.cpp » ('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 "../../../include/fxcrt/fx_system.h" 7 #include "core/include/fxcrt/fx_system.h"
8 #include "../../../include/fxge/fx_ge.h" 8 #include "core/include/fxge/fx_ge.h"
9 9
10 #if _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ 10 #if _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_
11 11
12 #include "../../../include/fxge/fx_freetype.h"
13 #include "../../../include/fxge/fx_ge_apple.h"
14 #include "../agg/include/fx_agg_driver.h"
15 #include "../dib/dib_int.h" 12 #include "../dib/dib_int.h"
16 #include "../ge/text_int.h" 13 #include "../ge/text_int.h"
17 #include "apple_int.h" 14 #include "apple_int.h"
15 #include "core/include/fxge/fx_freetype.h"
16 #include "core/include/fxge/fx_ge_apple.h"
17 #include "core/src/fxge/agg/include/fx_agg_driver.h"
18 18
19 void CFX_AggDeviceDriver::InitPlatform() { 19 void CFX_AggDeviceDriver::InitPlatform() {
20 CQuartz2D& quartz2d = 20 CQuartz2D& quartz2d =
21 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d; 21 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d;
22 m_pPlatformGraphics = quartz2d.createGraphics(m_pBitmap); 22 m_pPlatformGraphics = quartz2d.createGraphics(m_pBitmap);
23 } 23 }
24 void CFX_AggDeviceDriver::DestroyPlatform() { 24 void CFX_AggDeviceDriver::DestroyPlatform() {
25 CQuartz2D& quartz2d = 25 CQuartz2D& quartz2d =
26 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d; 26 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d;
27 if (m_pPlatformGraphics) { 27 if (m_pPlatformGraphics) {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 void CFX_Font::ReleasePlatformResource() { 165 void CFX_Font::ReleasePlatformResource() {
166 if (m_pPlatformFont) { 166 if (m_pPlatformFont) {
167 CQuartz2D& quartz2d = 167 CQuartz2D& quartz2d =
168 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d; 168 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d;
169 quartz2d.DestroyFont(m_pPlatformFont); 169 quartz2d.DestroyFont(m_pPlatformFont);
170 m_pPlatformFont = NULL; 170 m_pPlatformFont = NULL;
171 } 171 }
172 } 172 }
173 173
174 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ 174 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_
OLDNEW
« no previous file with comments | « core/src/fxge/apple/apple_int.h ('k') | core/src/fxge/apple/fx_mac_imp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698