| Index: Source/core/dom/DocumentMarkerController.cpp
|
| diff --git a/Source/core/dom/DocumentMarkerController.cpp b/Source/core/dom/DocumentMarkerController.cpp
|
| index 48af00e18ef7cf6290a67b47ec43e092287e6f0f..ab4d249cc74aef98347445bf343e1e3f74756ed5 100644
|
| --- a/Source/core/dom/DocumentMarkerController.cpp
|
| +++ b/Source/core/dom/DocumentMarkerController.cpp
|
| @@ -201,7 +201,7 @@ void DocumentMarkerController::copyMarkers(Node* srcNode, unsigned startOffset,
|
| if (length <= 0)
|
| return;
|
|
|
| - if (!possiblyHasMarkers(DocumentMarker::AllMarkers()))
|
| + if (!possiblyHasMarkers(DocumentMarker::allMarkers()))
|
| return;
|
| ASSERT(!m_markers.isEmpty());
|
|
|
| @@ -451,7 +451,7 @@ void DocumentMarkerController::removeMarkersFromList(MarkerMap::iterator iterato
|
| bool needsRepainting = false;
|
| bool listCanBeRemoved;
|
|
|
| - if (markerTypes == DocumentMarker::AllMarkers()) {
|
| + if (markerTypes == DocumentMarker::allMarkers()) {
|
| needsRepainting = true;
|
| listCanBeRemoved = true;
|
| } else {
|
| @@ -535,7 +535,7 @@ void DocumentMarkerController::invalidateRenderedRectsForMarkersInRect(const Lay
|
|
|
| void DocumentMarkerController::shiftMarkers(Node* node, unsigned startOffset, int delta)
|
| {
|
| - if (!possiblyHasMarkers(DocumentMarker::AllMarkers()))
|
| + if (!possiblyHasMarkers(DocumentMarker::allMarkers()))
|
| return;
|
| ASSERT(!m_markers.isEmpty());
|
|
|
| @@ -563,7 +563,7 @@ void DocumentMarkerController::shiftMarkers(Node* node, unsigned startOffset, in
|
|
|
| void DocumentMarkerController::setMarkersActive(Range* range, bool active)
|
| {
|
| - if (!possiblyHasMarkers(DocumentMarker::AllMarkers()))
|
| + if (!possiblyHasMarkers(DocumentMarker::allMarkers()))
|
| return;
|
| ASSERT(!m_markers.isEmpty());
|
|
|
|
|