Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: Source/core/dom/DocumentMarkerController.cpp

Issue 409113003: Revert of [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/css/resolver/MatchedPropertiesCache.cpp ('k') | Source/core/dom/DocumentOrderedMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698