| Index: third_party/WebKit/Source/core/editing/VisibleSelection.h
|
| diff --git a/third_party/WebKit/Source/core/editing/VisibleSelection.h b/third_party/WebKit/Source/core/editing/VisibleSelection.h
|
| index cd226950ab88072a3eb4c9b43550c43a33c90301..1916386ce1e2b1af77f0874972a7c5091025757e 100644
|
| --- a/third_party/WebKit/Source/core/editing/VisibleSelection.h
|
| +++ b/third_party/WebKit/Source/core/editing/VisibleSelection.h
|
| @@ -207,10 +207,10 @@ private:
|
| };
|
|
|
| extern template class CORE_EXTERN_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingStrategy>;
|
| -extern template class CORE_EXTERN_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingInComposedTreeStrategy>;
|
| +extern template class CORE_EXTERN_TEMPLATE_EXPORT VisibleSelectionTemplate<EditingInFlatTreeStrategy>;
|
|
|
| using VisibleSelection = VisibleSelectionTemplate<EditingStrategy>;
|
| -using VisibleSelectionInComposedTree = VisibleSelectionTemplate<EditingInComposedTreeStrategy>;
|
| +using VisibleSelectionInFlatTree = VisibleSelectionTemplate<EditingInFlatTreeStrategy>;
|
|
|
| // TODO(yosin): We should use |operator==()| instead of
|
| // |equalSelectionsInDOMTree()|.
|
| @@ -229,8 +229,8 @@ CORE_EXPORT PassRefPtrWillBeRawPtr<Range> firstRangeOf(const VisibleSelection&);
|
| // Outside the WebCore namespace for ease of invocation from gdb.
|
| void showTree(const blink::VisibleSelection&);
|
| void showTree(const blink::VisibleSelection*);
|
| -void showTree(const blink::VisibleSelectionInComposedTree&);
|
| -void showTree(const blink::VisibleSelectionInComposedTree*);
|
| +void showTree(const blink::VisibleSelectionInFlatTree&);
|
| +void showTree(const blink::VisibleSelectionInFlatTree*);
|
| #endif
|
|
|
| #endif // VisibleSelection_h
|
|
|