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

Side by Side Diff: third_party/WebKit/Source/core/dom/StyleEngine.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 12 matching lines...) Expand all
23 * You should have received a copy of the GNU Library General Public License 23 * You should have received a copy of the GNU Library General Public License
24 * along with this library; see the file COPYING.LIB. If not, write to 24 * along with this library; see the file COPYING.LIB. If not, write to
25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 * Boston, MA 02110-1301, USA. 26 * Boston, MA 02110-1301, USA.
27 * 27 *
28 */ 28 */
29 29
30 #ifndef StyleEngine_h 30 #ifndef StyleEngine_h
31 #define StyleEngine_h 31 #define StyleEngine_h
32 32
33 #include <memory>
33 #include "bindings/core/v8/ScriptWrappable.h" 34 #include "bindings/core/v8/ScriptWrappable.h"
34 #include "bindings/core/v8/TraceWrapperMember.h" 35 #include "bindings/core/v8/TraceWrapperMember.h"
35 #include "core/CoreExport.h" 36 #include "core/CoreExport.h"
36 #include "core/css/ActiveStyleSheets.h" 37 #include "core/css/ActiveStyleSheets.h"
37 #include "core/css/CSSFontSelectorClient.h" 38 #include "core/css/CSSFontSelectorClient.h"
38 #include "core/css/CSSGlobalRuleSet.h" 39 #include "core/css/CSSGlobalRuleSet.h"
39 #include "core/css/invalidation/StyleInvalidator.h" 40 #include "core/css/invalidation/StyleInvalidator.h"
40 #include "core/css/resolver/StyleResolver.h" 41 #include "core/css/resolver/StyleResolver.h"
41 #include "core/css/resolver/StyleResolverStats.h" 42 #include "core/css/resolver/StyleResolverStats.h"
42 #include "core/dom/Document.h" 43 #include "core/dom/Document.h"
43 #include "core/dom/DocumentOrderedList.h" 44 #include "core/dom/DocumentOrderedList.h"
44 #include "core/dom/DocumentStyleSheetCollection.h" 45 #include "core/dom/DocumentStyleSheetCollection.h"
45 #include "core/dom/StyleEngineContext.h" 46 #include "core/dom/StyleEngineContext.h"
46 #include "platform/heap/Handle.h" 47 #include "platform/heap/Handle.h"
47 #include "wtf/Allocator.h" 48 #include "wtf/Allocator.h"
48 #include "wtf/AutoReset.h" 49 #include "wtf/AutoReset.h"
49 #include "wtf/ListHashSet.h" 50 #include "wtf/ListHashSet.h"
50 #include "wtf/Vector.h" 51 #include "wtf/Vector.h"
51 #include "wtf/text/WTFString.h" 52 #include "wtf/text/WTFString.h"
52 #include <memory>
53 53
54 namespace blink { 54 namespace blink {
55 55
56 class CSSFontSelector; 56 class CSSFontSelector;
57 class CSSStyleSheet; 57 class CSSStyleSheet;
58 class MediaQueryEvaluator; 58 class MediaQueryEvaluator;
59 class Node; 59 class Node;
60 class RuleFeatureSet; 60 class RuleFeatureSet;
61 class ShadowTreeStyleSheetCollection; 61 class ShadowTreeStyleSheetCollection;
62 class StyleRuleFontFace; 62 class StyleRuleFontFace;
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 375
376 std::unique_ptr<StyleResolverStats> m_styleResolverStats; 376 std::unique_ptr<StyleResolverStats> m_styleResolverStats;
377 unsigned m_styleForElementCount = 0; 377 unsigned m_styleForElementCount = 0;
378 378
379 friend class StyleEngineTest; 379 friend class StyleEngineTest;
380 }; 380 };
381 381
382 } // namespace blink 382 } // namespace blink
383 383
384 #endif 384 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleElementTest.cpp ('k') | third_party/WebKit/Source/core/dom/StyleEngineTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698