| Index: Source/core/editing/markup.h
|
| diff --git a/Source/core/editing/markup.h b/Source/core/editing/markup.h
|
| index 41dd3d691ed98e9aedb145619668efba45899d48..e4297e22bf95b571d6ed89b343363177f0fbfb52 100644
|
| --- a/Source/core/editing/markup.h
|
| +++ b/Source/core/editing/markup.h
|
| @@ -61,8 +61,8 @@ bool isPlainTextMarkup(Node*);
|
| void replaceChildrenWithFragment(ContainerNode*, PassRefPtr<DocumentFragment>, ExceptionState&);
|
| void replaceChildrenWithText(ContainerNode*, const String&, ExceptionState&);
|
|
|
| -String createMarkup(const Range*, Vector<Node*>* = 0, EAnnotateForInterchange = DoNotAnnotateForInterchange, bool convertBlocksToInlines = false, EAbsoluteURLs = DoNotResolveURLs, Node* constrainingAncestor = 0);
|
| -String createMarkup(const Node*, EChildrenOnly = IncludeNode, Vector<Node*>* = 0, EAbsoluteURLs = DoNotResolveURLs, Vector<QualifiedName>* tagNamesToSkip = 0);
|
| +String createMarkup(const Range*, Vector<const Node*>* = 0, EAnnotateForInterchange = DoNotAnnotateForInterchange, bool convertBlocksToInlines = false, EAbsoluteURLs = DoNotResolveURLs, Node* constrainingAncestor = 0);
|
| +String createMarkup(const Node*, EChildrenOnly = IncludeNode, Vector<const Node*>* = 0, EAbsoluteURLs = DoNotResolveURLs, Vector<QualifiedName>* tagNamesToSkip = 0);
|
|
|
| String createFullMarkup(const Node*);
|
|
|
|
|