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

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

Issue 2392343005: Reflow comments in core/css (Closed)
Patch Set: Revert clang-format Created 4 years, 2 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 20 matching lines...) Expand all
31 #include "core/css/FontFace.h" 31 #include "core/css/FontFace.h"
32 #include "core/dom/ActiveDOMObject.h" 32 #include "core/dom/ActiveDOMObject.h"
33 #include "core/dom/Document.h" 33 #include "core/dom/Document.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 "wtf/Allocator.h"
39 #include "wtf/Vector.h" 39 #include "wtf/Vector.h"
40 40
41 // Mac OS X 10.6 SDK defines check() macro that interfares with our check() meth od 41 // Mac OS X 10.6 SDK defines check() macro that interferes with our check()
42 // method
42 #ifdef check 43 #ifdef check
43 #undef check 44 #undef check
44 #endif 45 #endif
45 46
46 namespace blink { 47 namespace blink {
47 48
48 class CSSFontFace; 49 class CSSFontFace;
49 class CSSFontFaceSource; 50 class CSSFontFaceSource;
50 class CSSFontSelector; 51 class CSSFontSelector;
51 class Dictionary; 52 class Dictionary;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 HeapListHashSet<Member<FontFace>> m_nonCSSConnectedFaces; 186 HeapListHashSet<Member<FontFace>> m_nonCSSConnectedFaces;
186 187
187 Member<AsyncMethodRunner<FontFaceSet>> m_asyncRunner; 188 Member<AsyncMethodRunner<FontFaceSet>> m_asyncRunner;
188 189
189 FontLoadHistogram m_histogram; 190 FontLoadHistogram m_histogram;
190 }; 191 };
191 192
192 } // namespace blink 193 } // namespace blink
193 194
194 #endif // FontFaceSet_h 195 #endif // FontFaceSet_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/FontFace.cpp ('k') | third_party/WebKit/Source/core/css/FontFaceSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698