OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 8 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 result.append(marker->renderedRect()); | 471 result.append(marker->renderedRect()); |
472 } | 472 } |
473 } | 473 } |
474 } | 474 } |
475 | 475 |
476 return result; | 476 return result; |
477 } | 477 } |
478 | 478 |
479 void DocumentMarkerController::trace(Visitor* visitor) | 479 void DocumentMarkerController::trace(Visitor* visitor) |
480 { | 480 { |
481 #if ENABLE(OILPAN) | |
482 visitor->trace(m_markers); | 481 visitor->trace(m_markers); |
483 #endif | |
484 } | 482 } |
485 | 483 |
486 void DocumentMarkerController::removeMarkers(Node* node, DocumentMarker::MarkerT
ypes markerTypes) | 484 void DocumentMarkerController::removeMarkers(Node* node, DocumentMarker::MarkerT
ypes markerTypes) |
487 { | 485 { |
488 if (!possiblyHasMarkers(markerTypes)) | 486 if (!possiblyHasMarkers(markerTypes)) |
489 return; | 487 return; |
490 ASSERT(!m_markers.isEmpty()); | 488 ASSERT(!m_markers.isEmpty()); |
491 | 489 |
492 MarkerMap::iterator iterator = m_markers.find(node); | 490 MarkerMap::iterator iterator = m_markers.find(node); |
493 if (iterator != m_markers.end()) | 491 if (iterator != m_markers.end()) |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 | 727 |
730 } // namespace blink | 728 } // namespace blink |
731 | 729 |
732 #ifndef NDEBUG | 730 #ifndef NDEBUG |
733 void showDocumentMarkers(const blink::DocumentMarkerController* controller) | 731 void showDocumentMarkers(const blink::DocumentMarkerController* controller) |
734 { | 732 { |
735 if (controller) | 733 if (controller) |
736 controller->showMarkers(); | 734 controller->showMarkers(); |
737 } | 735 } |
738 #endif | 736 #endif |
OLD | NEW |