OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium 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 #ifndef CONTENT_CHILD_FONT_WARMUP_WIN_H_ | 5 #ifndef CONTENT_CHILD_FONT_WARMUP_WIN_H_ |
6 #define CONTENT_CHILD_FONT_WARMUP_WIN_H_ | 6 #define CONTENT_CHILD_FONT_WARMUP_WIN_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 | 13 |
14 class SkFontMgr; | 14 class SkFontMgr; |
15 class SkTypeface; | |
16 | 15 |
17 namespace content { | 16 namespace content { |
18 | 17 |
19 class GdiFontPatchData { | 18 class GdiFontPatchData { |
20 public: | 19 public: |
21 virtual ~GdiFontPatchData() {} | 20 virtual ~GdiFontPatchData() {} |
22 | 21 |
23 protected: | 22 protected: |
24 GdiFontPatchData() {} | 23 GdiFontPatchData() {} |
25 | 24 |
(...skipping 30 matching lines...) Expand all Loading... |
56 // OpenSCManagerW | 55 // OpenSCManagerW |
57 // OpenServiceW | 56 // OpenServiceW |
58 // StartServiceW | 57 // StartServiceW |
59 // CloseServiceHandle. | 58 // CloseServiceHandle. |
60 // These are all IAT patched. | 59 // These are all IAT patched. |
61 CONTENT_EXPORT void PatchServiceManagerCalls(); | 60 CONTENT_EXPORT void PatchServiceManagerCalls(); |
62 | 61 |
63 } // namespace content | 62 } // namespace content |
64 | 63 |
65 #endif // CONTENT_CHILD_FONT_WARMUP_WIN_H_ | 64 #endif // CONTENT_CHILD_FONT_WARMUP_WIN_H_ |
OLD | NEW |