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

Side by Side Diff: third_party/WebKit/Source/core/css/FontFaceSet.h

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: Created 4 years, 1 month 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met: 5 * modification, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 28 matching lines...) Expand all
39 #include "wtf/Vector.h" 39 #include "wtf/Vector.h"
40 40
41 // Mac OS X 10.6 SDK defines check() macro that interferes with our check() 41 // Mac OS X 10.6 SDK defines check() macro that interferes with our check()
42 // method 42 // method
43 #ifdef check 43 #ifdef check
44 #undef check 44 #undef check
45 #endif 45 #endif
46 46
47 namespace blink { 47 namespace blink {
48 48
49 class CSSFontFace;
50 class CSSFontSelector; 49 class CSSFontSelector;
51 class ExceptionState; 50 class ExceptionState;
52 class Font; 51 class Font;
53 class FontFaceCache; 52 class FontFaceCache;
54 class ExecutionContext; 53 class ExecutionContext;
55 54
56 using FontFaceSetIterable = PairIterable<Member<FontFace>, Member<FontFace>>; 55 using FontFaceSetIterable = PairIterable<Member<FontFace>, Member<FontFace>>;
57 56
58 class FontFaceSet final : public EventTargetWithInlineData, 57 class FontFaceSet final : public EventTargetWithInlineData,
59 public Supplement<Document>, 58 public Supplement<Document>,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 HeapListHashSet<Member<FontFace>> m_nonCSSConnectedFaces; 182 HeapListHashSet<Member<FontFace>> m_nonCSSConnectedFaces;
184 183
185 Member<AsyncMethodRunner<FontFaceSet>> m_asyncRunner; 184 Member<AsyncMethodRunner<FontFaceSet>> m_asyncRunner;
186 185
187 FontLoadHistogram m_histogram; 186 FontLoadHistogram m_histogram;
188 }; 187 };
189 188
190 } // namespace blink 189 } // namespace blink
191 190
192 #endif // FontFaceSet_h 191 #endif // FontFaceSet_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698