| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 25 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 26 * Boston, MA 02110-1301, USA. | 26 * Boston, MA 02110-1301, USA. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #include "config.h" | 29 #include "config.h" |
| 30 #include "core/dom/VisitedLinkState.h" | 30 #include "core/dom/VisitedLinkState.h" |
| 31 | 31 |
| 32 #include "HTMLNames.h" | 32 #include "HTMLNames.h" |
| 33 #include "core/dom/NodeTraversal.h" | 33 #include "core/dom/NodeTraversal.h" |
| 34 #include "core/html/HTMLAnchorElement.h" | 34 #include "core/html/HTMLAnchorElement.h" |
| 35 #include "core/page/Frame.h" | |
| 36 #include "core/page/Page.h" | 35 #include "core/page/Page.h" |
| 37 #include <public/Platform.h> | 36 #include <public/Platform.h> |
| 38 | 37 |
| 39 namespace WebCore { | 38 namespace WebCore { |
| 40 | 39 |
| 41 using namespace HTMLNames; | 40 using namespace HTMLNames; |
| 42 | 41 |
| 43 inline static const AtomicString& linkAttribute(Element* element) | 42 inline static const AtomicString& linkAttribute(Element* element) |
| 44 { | 43 { |
| 45 ASSERT(element->isLink()); | 44 ASSERT(element->isLink()); |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 117 |
| 119 LinkHash hash = linkHashForElementWithAttribute(m_document, element, attribu
te); | 118 LinkHash hash = linkHashForElementWithAttribute(m_document, element, attribu
te); |
| 120 if (!hash) | 119 if (!hash) |
| 121 return InsideUnvisitedLink; | 120 return InsideUnvisitedLink; |
| 122 | 121 |
| 123 m_linksCheckedForVisitedState.add(hash); | 122 m_linksCheckedForVisitedState.add(hash); |
| 124 return WebKit::Platform::current()->isLinkVisited(hash) ? InsideVisitedLink
: InsideUnvisitedLink; | 123 return WebKit::Platform::current()->isLinkVisited(hash) ? InsideVisitedLink
: InsideUnvisitedLink; |
| 125 } | 124 } |
| 126 | 125 |
| 127 } | 126 } |
| OLD | NEW |