| 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 852c7aee652b1d9f92af7e7b6884f14994bc7489..e564474233eeb04e68710fe39901b9529c4198af 100644
|
| --- a/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/VisibleSelection.cpp
|
| @@ -782,28 +782,6 @@ bool VisibleSelectionTemplate<Strategy>::operator==(const VisibleSelectionTempla
|
| #ifndef NDEBUG
|
|
|
| template <typename Strategy>
|
| -void VisibleSelectionTemplate<Strategy>::debugPosition(const char* message) const
|
| -{
|
| - fprintf(stderr, "VisibleSelection (%s) ===============\n", message);
|
| -
|
| - if (m_baseIsFirst) {
|
| - m_start.debugPosition("start: ");
|
| - m_base.debugPosition("base: ");
|
| - m_end.debugPosition("end: ");
|
| - m_extent.debugPosition("extent: ");
|
| - } else {
|
| - m_start.debugPosition("start: ");
|
| - m_extent.debugPosition("extent: ");
|
| - m_end.debugPosition("end: ");
|
| - m_base.debugPosition("base: ");
|
| - }
|
| -
|
| - fprintf(stderr, "isDirectional=%s\n", isDirectional() ? "true" : "false");
|
| - fprintf(stderr, "affinity=%s\n", affinity() == TextAffinity::Downstream ? "DOWNSTREaM" : affinity() == TextAffinity::Upstream ? "UPSTREAM" : "UNKNOWN");
|
| - fprintf(stderr, "================================\n");
|
| -}
|
| -
|
| -template <typename Strategy>
|
| void VisibleSelectionTemplate<Strategy>::showTreeForThis() const
|
| {
|
| if (!start().anchorNode())
|
|
|