2 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include "public/web/WebHitTestResult.h"
29 #include "core/dom/Element.h"
30 #include "core/dom/Node.h"
31 #include "core/editing/VisiblePosition.h"
32 #include "core/layout/HitTestResult.h"
33 #include "core/layout/LayoutObject.h"
34 #include "platform/weborigin/KURL.h"
35 #include "public/platform/WebPoint.h"
36 #include "public/platform/WebURL.h"
37 #include "public/web/WebElement.h"
38 #include "public/web/WebNode.h"
42 class WebHitTestResultPrivate
: public RefCountedWillBeGarbageCollectedFinalized
<WebHitTestResultPrivate
> {
44 static PassRefPtrWillBeRawPtr
<WebHitTestResultPrivate
> create(const HitTestResult
&);
45 static PassRefPtrWillBeRawPtr
<WebHitTestResultPrivate
> create(const WebHitTestResultPrivate
&);
46 DEFINE_INLINE_TRACE() { visitor
->trace(m_result
); }
47 const HitTestResult
& result() const { return m_result
; }
50 WebHitTestResultPrivate(const HitTestResult
&);
51 WebHitTestResultPrivate(const WebHitTestResultPrivate
&);
53 HitTestResult m_result
;
56 inline WebHitTestResultPrivate::WebHitTestResultPrivate(const HitTestResult
& result
)
61 inline WebHitTestResultPrivate::WebHitTestResultPrivate(const WebHitTestResultPrivate
& result
)
62 : m_result(result
.m_result
)
66 PassRefPtrWillBeRawPtr
<WebHitTestResultPrivate
> WebHitTestResultPrivate::create(const HitTestResult
& result
)
68 return adoptRefWillBeNoop(new WebHitTestResultPrivate(result
));
71 PassRefPtrWillBeRawPtr
<WebHitTestResultPrivate
> WebHitTestResultPrivate::create(const WebHitTestResultPrivate
& result
)
73 return adoptRefWillBeNoop(new WebHitTestResultPrivate(result
));
76 WebNode
WebHitTestResult::node() const
78 return WebNode(m_private
->result().innerNode());
81 WebPoint
WebHitTestResult::localPoint() const
83 return roundedIntPoint(m_private
->result().localPoint());
86 WebElement
WebHitTestResult::urlElement() const
88 return WebElement(m_private
->result().URLElement());
91 WebURL
WebHitTestResult::absoluteImageURL() const
93 return m_private
->result().absoluteImageURL();
96 WebURL
WebHitTestResult::absoluteLinkURL() const
98 return m_private
->result().absoluteLinkURL();
101 bool WebHitTestResult::isContentEditable() const
103 return m_private
->result().isContentEditable();
106 WebHitTestResult::WebHitTestResult(const HitTestResult
& result
)
107 : m_private(WebHitTestResultPrivate::create(result
))
111 WebHitTestResult
& WebHitTestResult::operator=(const HitTestResult
& result
)
113 m_private
= WebHitTestResultPrivate::create(result
);
117 bool WebHitTestResult::isNull() const
119 return !m_private
.get();
122 void WebHitTestResult::assign(const WebHitTestResult
& info
)
127 m_private
= WebHitTestResultPrivate::create(*info
.m_private
.get());
130 void WebHitTestResult::reset()