| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2004 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class ContainerNode; | 40 class ContainerNode; |
| 41 class Document; | 41 class Document; |
| 42 class DocumentFragment; | 42 class DocumentFragment; |
| 43 class Element; | 43 class Element; |
| 44 class ExceptionState; | 44 class ExceptionState; |
| 45 class Node; | 45 class Node; |
| 46 class Range; | |
| 47 class StylePropertySet; | 46 class StylePropertySet; |
| 48 | 47 |
| 49 enum EChildrenOnly { IncludeNode, ChildrenOnly }; | 48 enum EChildrenOnly { IncludeNode, ChildrenOnly }; |
| 50 enum EAbsoluteURLs { DoNotResolveURLs, ResolveAllURLs, ResolveNonLocalURLs }; | 49 enum EAbsoluteURLs { DoNotResolveURLs, ResolveAllURLs, ResolveNonLocalURLs }; |
| 51 enum class ConvertBlocksToInlines { NotConvert, Convert }; | 50 enum class ConvertBlocksToInlines { NotConvert, Convert }; |
| 52 | 51 |
| 53 DocumentFragment* createFragmentFromText(const EphemeralRange& context, | 52 DocumentFragment* createFragmentFromText(const EphemeralRange& context, |
| 54 const String& text); | 53 const String& text); |
| 55 DocumentFragment* createFragmentFromMarkup( | 54 DocumentFragment* createFragmentFromMarkup( |
| 56 Document&, | 55 Document&, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 EAbsoluteURLs = DoNotResolveURLs, | 104 EAbsoluteURLs = DoNotResolveURLs, |
| 106 Node* constrainingAncestor = nullptr); | 105 Node* constrainingAncestor = nullptr); |
| 107 | 106 |
| 108 void mergeWithNextTextNode(Text*, ExceptionState&); | 107 void mergeWithNextTextNode(Text*, ExceptionState&); |
| 109 | 108 |
| 110 bool propertyMissingOrEqualToNone(StylePropertySet*, CSSPropertyID); | 109 bool propertyMissingOrEqualToNone(StylePropertySet*, CSSPropertyID); |
| 111 | 110 |
| 112 } // namespace blink | 111 } // namespace blink |
| 113 | 112 |
| 114 #endif // Serialization_h | 113 #endif // Serialization_h |
| OLD | NEW |