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: third_party/WebKit/Source/core/css/FontFaceSet.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) 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 17 matching lines...) Expand all
28 28
29 #include "bindings/core/v8/Iterable.h" 29 #include "bindings/core/v8/Iterable.h"
30 #include "bindings/core/v8/ScriptPromise.h" 30 #include "bindings/core/v8/ScriptPromise.h"
31 #include "core/css/FontFace.h" 31 #include "core/css/FontFace.h"
32 #include "core/dom/Document.h" 32 #include "core/dom/Document.h"
33 #include "core/dom/SuspendableObject.h" 33 #include "core/dom/SuspendableObject.h"
34 #include "core/events/EventListener.h" 34 #include "core/events/EventListener.h"
35 #include "core/events/EventTarget.h" 35 #include "core/events/EventTarget.h"
36 #include "platform/AsyncMethodRunner.h" 36 #include "platform/AsyncMethodRunner.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "wtf/Allocator.h" 38 #include "platform/wtf/Allocator.h"
39 #include "wtf/Vector.h" 39 #include "platform/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 CSSFontSelector; 49 class CSSFontSelector;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 HeapListHashSet<Member<FontFace>> non_css_connected_faces_; 182 HeapListHashSet<Member<FontFace>> non_css_connected_faces_;
183 183
184 Member<AsyncMethodRunner<FontFaceSet>> async_runner_; 184 Member<AsyncMethodRunner<FontFaceSet>> async_runner_;
185 185
186 FontLoadHistogram histogram_; 186 FontLoadHistogram histogram_;
187 }; 187 };
188 188
189 } // namespace blink 189 } // namespace blink
190 190
191 #endif // FontFaceSet_h 191 #endif // FontFaceSet_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/FontFaceCache.cpp ('k') | third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698