| 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 | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 7 * reserved. | 7 * reserved. |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "core/CoreExport.h" | 32 #include "core/CoreExport.h" |
| 33 #include "core/editing/iterators/TextIterator.h" | 33 #include "core/editing/iterators/TextIterator.h" |
| 34 #include "core/editing/markers/DocumentMarker.h" | 34 #include "core/editing/markers/DocumentMarker.h" |
| 35 #include "platform/geometry/IntRect.h" | 35 #include "platform/geometry/IntRect.h" |
| 36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 #include "wtf/HashMap.h" | 37 #include "wtf/HashMap.h" |
| 38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class LayoutPoint; | |
| 43 class LayoutRect; | |
| 44 class Node; | 42 class Node; |
| 45 class Range; | 43 class Range; |
| 46 class RenderedDocumentMarker; | 44 class RenderedDocumentMarker; |
| 47 class Text; | 45 class Text; |
| 48 | 46 |
| 49 class MarkerRemoverPredicate final { | 47 class MarkerRemoverPredicate final { |
| 50 public: | 48 public: |
| 51 explicit MarkerRemoverPredicate(const Vector<String>& words); | 49 explicit MarkerRemoverPredicate(const Vector<String>& words); |
| 52 bool operator()(const DocumentMarker&, const Text&) const; | 50 bool operator()(const DocumentMarker&, const Text&) const; |
| 53 | 51 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 const Member<const Document> m_document; | 153 const Member<const Document> m_document; |
| 156 }; | 154 }; |
| 157 | 155 |
| 158 } // namespace blink | 156 } // namespace blink |
| 159 | 157 |
| 160 #ifndef NDEBUG | 158 #ifndef NDEBUG |
| 161 void showDocumentMarkers(const blink::DocumentMarkerController*); | 159 void showDocumentMarkers(const blink::DocumentMarkerController*); |
| 162 #endif | 160 #endif |
| 163 | 161 |
| 164 #endif // DocumentMarkerController_h | 162 #endif // DocumentMarkerController_h |
| OLD | NEW |