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

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

Issue 1707923002: Expand all paths to be based off pdfium/ directory (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Sort headers Created 4 years, 10 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
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/include/fxcrt/fx_system.h" 7 #include "core/include/fxcrt/fx_system.h"
8 #include "core/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 "apple_int.h" 12 #include "core/src/fxge/apple/apple_int.h"
13 #include "core/include/fxge/fx_freetype.h" 13 #include "core/include/fxge/fx_freetype.h"
14 #include "core/include/fxge/fx_ge_apple.h" 14 #include "core/include/fxge/fx_ge_apple.h"
15 #include "core/src/fxge/agg/include/fx_agg_driver.h" 15 #include "core/src/fxge/agg/include/fx_agg_driver.h"
16 #include "core/src/fxge/dib/dib_int.h" 16 #include "core/src/fxge/dib/dib_int.h"
17 #include "core/src/fxge/ge/fx_text_int.h" 17 #include "core/src/fxge/ge/fx_text_int.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);
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 void CFX_Font::ReleasePlatformResource() { 164 void CFX_Font::ReleasePlatformResource() {
165 if (m_pPlatformFont) { 165 if (m_pPlatformFont) {
166 CQuartz2D& quartz2d = 166 CQuartz2D& quartz2d =
167 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d; 167 ((CApplePlatform*)CFX_GEModule::Get()->GetPlatformData())->_quartz2d;
168 quartz2d.DestroyFont(m_pPlatformFont); 168 quartz2d.DestroyFont(m_pPlatformFont);
169 m_pPlatformFont = NULL; 169 m_pPlatformFont = NULL;
170 } 170 }
171 } 171 }
172 172
173 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ 173 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698