Commit 8f504496 authored by Akari Asai's avatar Akari Asai Committed by Commit Bot

Add CORE_EXPORRT to ConvertToSelectionInDOMTree() and ConvertToSelectionInFlatTree().

This patch wilk add CORE_EXPORT to convertToSelectionInDOMTree() and
ConvertToSelectionInFlatTree() in SelectionTemplate.h, to utilize these
methods for selection conversion between a flat tree and a dom tree.
This patch is for the SelectionModifier on flat tree changes.

Change-Id: Id847872a6699448e4db3b852c96ae2edb7a68306
Reviewed-on: https://chromium-review.googlesource.com/690134Reviewed-by: default avatarXiaocheng Hu <xiaochengh@chromium.org>
Commit-Queue: Akari Asai <akariasai@google.com>
Cr-Commit-Position: refs/heads/master@{#505240}
parent fcd47db2
...@@ -160,8 +160,10 @@ extern template class CORE_EXTERN_TEMPLATE_EXPORT ...@@ -160,8 +160,10 @@ extern template class CORE_EXTERN_TEMPLATE_EXPORT
using SelectionInDOMTree = SelectionTemplate<EditingStrategy>; using SelectionInDOMTree = SelectionTemplate<EditingStrategy>;
using SelectionInFlatTree = SelectionTemplate<EditingInFlatTreeStrategy>; using SelectionInFlatTree = SelectionTemplate<EditingInFlatTreeStrategy>;
SelectionInDOMTree ConvertToSelectionInDOMTree(const SelectionInFlatTree&); CORE_EXPORT SelectionInDOMTree
SelectionInFlatTree ConvertToSelectionInFlatTree(const SelectionInDOMTree&); ConvertToSelectionInDOMTree(const SelectionInFlatTree&);
CORE_EXPORT SelectionInFlatTree
ConvertToSelectionInFlatTree(const SelectionInDOMTree&);
CORE_EXPORT std::ostream& operator<<(std::ostream&, const SelectionInDOMTree&); CORE_EXPORT std::ostream& operator<<(std::ostream&, const SelectionInDOMTree&);
CORE_EXPORT std::ostream& operator<<(std::ostream&, const SelectionInFlatTree&); CORE_EXPORT std::ostream& operator<<(std::ostream&, const SelectionInFlatTree&);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment