| Index: third_party/WebKit/Source/core/editing/VisibleSelection.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
|
| index c8ed0e7135d65ed3da07f86cf2e0f3ec9dccdf98..d7d7114eba27268340cd863f7f6a4058e5741c30 100644
|
| --- a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
|
| @@ -954,7 +954,7 @@ void VisibleSelectionTemplate<Strategy>::showTreeForThis() const
|
| #endif
|
|
|
| template class CORE_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingStrategy>;
|
| -template class CORE_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingInComposedTreeStrategy>;
|
| +template class CORE_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingInFlatTreeStrategy>;
|
|
|
| } // namespace blink
|
|
|
| @@ -971,12 +971,12 @@ void showTree(const blink::VisibleSelection* sel)
|
| sel->showTreeForThis();
|
| }
|
|
|
| -void showTree(const blink::VisibleSelectionInComposedTree& sel)
|
| +void showTree(const blink::VisibleSelectionInFlatTree& sel)
|
| {
|
| sel.showTreeForThis();
|
| }
|
|
|
| -void showTree(const blink::VisibleSelectionInComposedTree* sel)
|
| +void showTree(const blink::VisibleSelectionInFlatTree* sel)
|
| {
|
| if (sel)
|
| sel->showTreeForThis();
|
|
|