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

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

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 /* 1 /*
2 * Copyright (C) 2007, 2008, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2011 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef CSSFontSelector_h 26 #ifndef CSSFontSelector_h
27 #define CSSFontSelector_h 27 #define CSSFontSelector_h
28 28
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/css/FontFaceCache.h" 30 #include "core/css/FontFaceCache.h"
31 #include "platform/fonts/FontSelector.h" 31 #include "platform/fonts/FontSelector.h"
32 #include "platform/fonts/GenericFontFamilySettings.h" 32 #include "platform/fonts/GenericFontFamilySettings.h"
33 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
34 #include "wtf/Forward.h" 34 #include "platform/wtf/Forward.h"
35 #include "wtf/HashMap.h" 35 #include "platform/wtf/HashMap.h"
36 #include "wtf/HashSet.h" 36 #include "platform/wtf/HashSet.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class CSSFontSelectorClient; 40 class CSSFontSelectorClient;
41 class Document; 41 class Document;
42 class FontDescription; 42 class FontDescription;
43 43
44 class CORE_EXPORT CSSFontSelector : public FontSelector { 44 class CORE_EXPORT CSSFontSelector : public FontSelector {
45 public: 45 public:
46 static CSSFontSelector* Create(Document* document) { 46 static CSSFontSelector* Create(Document* document) {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 WeakMember<Document> document_; 91 WeakMember<Document> document_;
92 // FIXME: Move to Document or StyleEngine. 92 // FIXME: Move to Document or StyleEngine.
93 FontFaceCache font_face_cache_; 93 FontFaceCache font_face_cache_;
94 HeapHashSet<WeakMember<CSSFontSelectorClient>> clients_; 94 HeapHashSet<WeakMember<CSSFontSelectorClient>> clients_;
95 GenericFontFamilySettings generic_font_family_settings_; 95 GenericFontFamilySettings generic_font_family_settings_;
96 }; 96 };
97 97
98 } // namespace blink 98 } // namespace blink
99 99
100 #endif // CSSFontSelector_h 100 #endif // CSSFontSelector_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFeatureValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSFontSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698