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

Side by Side Diff: Source/platform/fonts/win/FontPlatformDataWin.h

Issue 200693004: Remove unused defines and includes from FontPlatformDataWin (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/platform/fonts/win/FontPlatformDataWin.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 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Computer, Inc. 2 * Copyright (C) 2006, 2007 Apple Computer, Inc.
3 * Copyright (c) 2006, 2007, 2008, 2009, Google Inc. All rights reserved. 3 * Copyright (c) 2006, 2007, 2008, 2009, Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 28 matching lines...) Expand all
39 #include "platform/fonts/FontOrientation.h" 39 #include "platform/fonts/FontOrientation.h"
40 #include "platform/fonts/opentype/OpenTypeVerticalData.h" 40 #include "platform/fonts/opentype/OpenTypeVerticalData.h"
41 #include "wtf/Forward.h" 41 #include "wtf/Forward.h"
42 #include "wtf/HashTableDeletedValueType.h" 42 #include "wtf/HashTableDeletedValueType.h"
43 #include "wtf/OwnPtr.h" 43 #include "wtf/OwnPtr.h"
44 #include "wtf/PassRefPtr.h" 44 #include "wtf/PassRefPtr.h"
45 #include "wtf/RefCounted.h" 45 #include "wtf/RefCounted.h"
46 #include "wtf/RefPtr.h" 46 #include "wtf/RefPtr.h"
47 #include "wtf/text/StringImpl.h" 47 #include "wtf/text/StringImpl.h"
48 48
49 #include <usp10.h>
50
51 typedef struct HFONT__ *HFONT;
52
53 namespace WebCore { 49 namespace WebCore {
54 50
55 class FontDescription; 51 class FontDescription;
56 class GraphicsContext; 52 class GraphicsContext;
57 class HarfBuzzFace; 53 class HarfBuzzFace;
58 54
59 class PLATFORM_EXPORT FontPlatformData { 55 class PLATFORM_EXPORT FontPlatformData {
60 public: 56 public:
61 // Used for deleted values in the font cache's hash tables. The hash table 57 // Used for deleted values in the font cache's hash tables. The hash table
62 // will create us with this structure, and it will compare other values 58 // will create us with this structure, and it will compare other values
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 112
117 mutable RefPtr<HarfBuzzFace> m_harfBuzzFace; 113 mutable RefPtr<HarfBuzzFace> m_harfBuzzFace;
118 114
119 bool m_isHashTableDeletedValue; 115 bool m_isHashTableDeletedValue;
120 bool m_useSubpixelPositioning; 116 bool m_useSubpixelPositioning;
121 }; 117 };
122 118
123 } // WebCore 119 } // WebCore
124 120
125 #endif // FontPlatformDataChromiumWin_h 121 #endif // FontPlatformDataChromiumWin_h
OLDNEW
« no previous file with comments | « no previous file | Source/platform/fonts/win/FontPlatformDataWin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698