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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
6 * rights reserved. 6 * rights reserved.
7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 class FilterOperations; 110 class FilterOperations;
111 111
112 class AppliedTextDecoration; 112 class AppliedTextDecoration;
113 class BorderData; 113 class BorderData;
114 struct BorderEdge; 114 struct BorderEdge;
115 class CSSAnimationData; 115 class CSSAnimationData;
116 class CSSTransitionData; 116 class CSSTransitionData;
117 class CSSVariableData; 117 class CSSVariableData;
118 class Font; 118 class Font;
119 class FontMetrics;
120 class Hyphenation; 119 class Hyphenation;
121 class RotateTransformOperation; 120 class RotateTransformOperation;
122 class ScaleTransformOperation; 121 class ScaleTransformOperation;
123 class ShadowList; 122 class ShadowList;
124 class ShapeValue; 123 class ShapeValue;
125 class StyleImage; 124 class StyleImage;
126 class StyleInheritedData; 125 class StyleInheritedData;
127 class StylePath; 126 class StylePath;
128 class StyleResolver; 127 class StyleResolver;
129 class TransformationMatrix; 128 class TransformationMatrix;
(...skipping 3990 matching lines...) Expand 10 before | Expand all | Expand 10 after
4120 m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1); 4119 m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1);
4121 } 4120 }
4122 4121
4123 inline bool ComputedStyle::hasPseudoElementStyle() const { 4122 inline bool ComputedStyle::hasPseudoElementStyle() const {
4124 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask; 4123 return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask;
4125 } 4124 }
4126 4125
4127 } // namespace blink 4126 } // namespace blink
4128 4127
4129 #endif // ComputedStyle_h 4128 #endif // ComputedStyle_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/plugins/PluginView.h ('k') | third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698