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

Side by Side Diff: core/src/fxge/win32/dwrite_int.h

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Full style-guide compliance. Created 5 years, 6 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/src/fxge/skia/fx_skia_device.h ('k') | core/src/fxge/win32/win32_int.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 #ifndef _FX_DIRECT_WRITE_ 7 #ifndef CORE_SRC_FXGE_WIN32_DWRITE_INT_H_
8 #define _FX_DIRECT_WRITE_ 8 #define CORE_SRC_FXGE_WIN32_DWRITE_INT_H_
9
9 #ifndef DECLSPEC_UUID 10 #ifndef DECLSPEC_UUID
10 #if (_MSC_VER >= 1100) && defined (__cplusplus) 11 #if (_MSC_VER >= 1100) && defined (__cplusplus)
11 #define DECLSPEC_UUID(x) __declspec(uuid(x)) 12 #define DECLSPEC_UUID(x) __declspec(uuid(x))
12 #else 13 #else
13 #define DECLSPEC_UUID(x) 14 #define DECLSPEC_UUID(x)
14 #endif 15 #endif
15 #endif 16 #endif
16 #ifndef DECLSPEC_NOVTABLE 17 #ifndef DECLSPEC_NOVTABLE
17 #if (_MSC_VER >= 1100) && defined(__cplusplus) 18 #if (_MSC_VER >= 1100) && defined(__cplusplus)
18 #define DECLSPEC_NOVTABLE __declspec(novtable) 19 #define DECLSPEC_NOVTABLE __declspec(novtable)
(...skipping 30 matching lines...) Expand all
49 void* glyph_offsets, 50 void* glyph_offsets,
50 FX_FLOAT* glyph_advances); 51 FX_FLOAT* glyph_advances);
51 void DwDeleteFont(void* pFont); 52 void DwDeleteFont(void* pFont);
52 53
53 protected: 54 protected:
54 void* m_hModule; 55 void* m_hModule;
55 void* m_pDWriteFactory; 56 void* m_pDWriteFactory;
56 void* m_pDwFontContext; 57 void* m_pDwFontContext;
57 void* m_pDwTextRenderer; 58 void* m_pDwTextRenderer;
58 }; 59 };
59 #endif 60
61 #endif // CORE_SRC_FXGE_WIN32_DWRITE_INT_H_
OLDNEW
« no previous file with comments | « core/src/fxge/skia/fx_skia_device.h ('k') | core/src/fxge/win32/win32_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698