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

Side by Side Diff: Source/core/css/PageRuleCollector.h

Issue 541383003: Clean up forward declarations in Source/core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 * 19 *
20 */ 20 */
21 21
22 #ifndef PageRuleCollector_h 22 #ifndef PageRuleCollector_h
23 #define PageRuleCollector_h 23 #define PageRuleCollector_h
24 24
25 #include "core/css/resolver/MatchResult.h" 25 #include "core/css/resolver/MatchResult.h"
26 #include "wtf/Vector.h" 26 #include "wtf/Vector.h"
27 27
28 namespace blink { 28 namespace blink {
29 29
30 class ElementResolveContext;
31 class StyleRulePage; 30 class StyleRulePage;
32 31
33 class PageRuleCollector { 32 class PageRuleCollector {
34 STACK_ALLOCATED(); 33 STACK_ALLOCATED();
35 public: 34 public:
36 PageRuleCollector(const RenderStyle* rootElementStyle, int pageIndex); 35 PageRuleCollector(const RenderStyle* rootElementStyle, int pageIndex);
37 36
38 void matchPageRules(RuleSet* rules); 37 void matchPageRules(RuleSet* rules);
39 MatchResult& matchedResult() { return m_result; } 38 MatchResult& matchedResult() { return m_result; }
40 39
41 private: 40 private:
42 bool isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const; 41 bool isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const;
43 bool isRightPage(const RenderStyle* rootElementStyle, int pageIndex) const { return !isLeftPage(rootElementStyle, pageIndex); } 42 bool isRightPage(const RenderStyle* rootElementStyle, int pageIndex) const { return !isLeftPage(rootElementStyle, pageIndex); }
44 bool isFirstPage(int pageIndex) const; 43 bool isFirstPage(int pageIndex) const;
45 String pageName(int pageIndex) const; 44 String pageName(int pageIndex) const;
46 45
47 void matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage > >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& r ules, bool isLeftPage, bool isFirstPage, const String& pageName); 46 void matchPageRulesForList(WillBeHeapVector<RawPtrWillBeMember<StyleRulePage > >& matchedRules, const WillBeHeapVector<RawPtrWillBeMember<StyleRulePage> >& r ules, bool isLeftPage, bool isFirstPage, const String& pageName);
48 47
49 const bool m_isLeftPage; 48 const bool m_isLeftPage;
50 const bool m_isFirstPage; 49 const bool m_isFirstPage;
51 const String m_pageName; 50 const String m_pageName;
52 51
53 MatchResult m_result; 52 MatchResult m_result;
54 }; 53 };
55 54
56 } // namespace blink 55 } // namespace blink
57 56
58 #endif // PageRuleCollector_h 57 #endif // PageRuleCollector_h
OLDNEW
« no previous file with comments | « Source/core/css/MediaQueryListListener.h ('k') | Source/core/css/PropertySetCSSStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698