OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 30 matching lines...) Expand all Loading... |
41 #include "wtf/RefCounted.h" | 41 #include "wtf/RefCounted.h" |
42 #include "wtf/RefPtr.h" | 42 #include "wtf/RefPtr.h" |
43 #include "wtf/TriState.h" | 43 #include "wtf/TriState.h" |
44 #include "wtf/Vector.h" | 44 #include "wtf/Vector.h" |
45 #include "wtf/text/WTFString.h" | 45 #include "wtf/text/WTFString.h" |
46 | 46 |
47 namespace blink { | 47 namespace blink { |
48 | 48 |
49 class CSSStyleDeclaration; | 49 class CSSStyleDeclaration; |
50 class CSSComputedStyleDeclaration; | 50 class CSSComputedStyleDeclaration; |
51 class CSSPrimitiveValue; | |
52 class CSSValue; | |
53 class ContainerNode; | 51 class ContainerNode; |
54 class Document; | 52 class Document; |
55 class Element; | 53 class Element; |
56 class HTMLElement; | 54 class HTMLElement; |
57 class MutableStylePropertySet; | 55 class MutableStylePropertySet; |
58 class Node; | 56 class Node; |
59 class Position; | 57 class Position; |
60 class QualifiedName; | 58 class QualifiedName; |
61 class RenderStyle; | 59 class RenderStyle; |
62 class StylePropertySet; | 60 class StylePropertySet; |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 String m_applyFontSize; | 228 String m_applyFontSize; |
231 }; | 229 }; |
232 | 230 |
233 // FIXME: Remove these functions or make them non-global to discourage using CSS
StyleDeclaration directly. | 231 // FIXME: Remove these functions or make them non-global to discourage using CSS
StyleDeclaration directly. |
234 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); | 232 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); |
235 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID); | 233 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID); |
236 | 234 |
237 } // namespace blink | 235 } // namespace blink |
238 | 236 |
239 #endif // EditingStyle_h | 237 #endif // EditingStyle_h |
OLD | NEW |