| 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) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
| 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "core/html/HTMLAnchorElement.h" | 25 #include "core/html/HTMLAnchorElement.h" |
| 26 | 26 |
| 27 #include "core/editing/EditingUtilities.h" | 27 #include "core/editing/EditingUtilities.h" |
| 28 #include "core/events/KeyboardEvent.h" | 28 #include "core/events/KeyboardEvent.h" |
| 29 #include "core/events/MouseEvent.h" | 29 #include "core/events/MouseEvent.h" |
| 30 #include "core/frame/FrameHost.h" | 30 #include "core/frame/FrameHost.h" |
| 31 #include "core/frame/LocalFrameClient.h" |
| 31 #include "core/frame/Settings.h" | 32 #include "core/frame/Settings.h" |
| 32 #include "core/frame/UseCounter.h" | 33 #include "core/frame/UseCounter.h" |
| 33 #include "core/html/HTMLImageElement.h" | 34 #include "core/html/HTMLImageElement.h" |
| 34 #include "core/html/parser/HTMLParserIdioms.h" | 35 #include "core/html/parser/HTMLParserIdioms.h" |
| 35 #include "core/layout/LayoutBox.h" | 36 #include "core/layout/LayoutBox.h" |
| 36 #include "core/loader/FrameLoadRequest.h" | 37 #include "core/loader/FrameLoadRequest.h" |
| 37 #include "core/loader/FrameLoaderClient.h" | |
| 38 #include "core/loader/PingLoader.h" | 38 #include "core/loader/PingLoader.h" |
| 39 #include "core/page/ChromeClient.h" | 39 #include "core/page/ChromeClient.h" |
| 40 #include "platform/network/NetworkHints.h" | 40 #include "platform/network/NetworkHints.h" |
| 41 #include "platform/weborigin/SecurityPolicy.h" | 41 #include "platform/weborigin/SecurityPolicy.h" |
| 42 #include "public/platform/WebNavigationHintType.h" | 42 #include "public/platform/WebNavigationHintType.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 using namespace HTMLNames; | 46 using namespace HTMLNames; |
| 47 | 47 |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 } | 483 } |
| 484 | 484 |
| 485 HTMLAnchorElement::NavigationHintSender* | 485 HTMLAnchorElement::NavigationHintSender* |
| 486 HTMLAnchorElement::ensureNavigationHintSender() { | 486 HTMLAnchorElement::ensureNavigationHintSender() { |
| 487 if (!m_navigationHintSender) | 487 if (!m_navigationHintSender) |
| 488 m_navigationHintSender = NavigationHintSender::create(this); | 488 m_navigationHintSender = NavigationHintSender::create(this); |
| 489 return m_navigationHintSender; | 489 return m_navigationHintSender; |
| 490 } | 490 } |
| 491 | 491 |
| 492 } // namespace blink | 492 } // namespace blink |
| OLD | NEW |