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

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

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

Powered by Google App Engine
This is Rietveld 408576698