| 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 21 matching lines...) Expand all Loading... |
| 32 #ifndef EditingStyle_h | 32 #ifndef EditingStyle_h |
| 33 #define EditingStyle_h | 33 #define EditingStyle_h |
| 34 | 34 |
| 35 #include "core/CSSPropertyNames.h" | 35 #include "core/CSSPropertyNames.h" |
| 36 #include "core/CSSValueKeywords.h" | 36 #include "core/CSSValueKeywords.h" |
| 37 #include "core/CoreExport.h" | 37 #include "core/CoreExport.h" |
| 38 #include "core/editing/Position.h" | 38 #include "core/editing/Position.h" |
| 39 #include "core/editing/VisibleSelection.h" | 39 #include "core/editing/VisibleSelection.h" |
| 40 #include "core/editing/WritingDirection.h" | 40 #include "core/editing/WritingDirection.h" |
| 41 #include "platform/heap/Handle.h" | 41 #include "platform/heap/Handle.h" |
| 42 #include "wtf/Forward.h" | 42 #include "platform/wtf/Forward.h" |
| 43 #include "wtf/TriState.h" | 43 #include "platform/wtf/TriState.h" |
| 44 #include "wtf/Vector.h" | 44 #include "platform/wtf/Vector.h" |
| 45 #include "wtf/text/WTFString.h" | 45 #include "platform/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 ContainerNode; | 51 class ContainerNode; |
| 52 class Document; | 52 class Document; |
| 53 class Element; | 53 class Element; |
| 54 class HTMLElement; | 54 class HTMLElement; |
| 55 class MutableStylePropertySet; | 55 class MutableStylePropertySet; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 }; | 254 }; |
| 255 | 255 |
| 256 // FIXME: Remove these functions or make them non-global to discourage using | 256 // FIXME: Remove these functions or make them non-global to discourage using |
| 257 // CSSStyleDeclaration directly. | 257 // CSSStyleDeclaration directly. |
| 258 CSSValueID GetIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); | 258 CSSValueID GetIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); |
| 259 CSSValueID GetIdentifierValue(StylePropertySet*, CSSPropertyID); | 259 CSSValueID GetIdentifierValue(StylePropertySet*, CSSPropertyID); |
| 260 | 260 |
| 261 } // namespace blink | 261 } // namespace blink |
| 262 | 262 |
| 263 #endif // EditingStyle_h | 263 #endif // EditingStyle_h |
| OLD | NEW |