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

Unified Diff: public/web/WebHitTestResult.h

Issue 326393003: Oilpan: Change Persistent<> data members to Member<> in HitTestResult. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Follow review comments Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« Source/web/WebHitTestResult.cpp ('K') | « Source/web/mac/WebSubstringUtil.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebHitTestResult.h
diff --git a/public/web/WebHitTestResult.h b/public/web/WebHitTestResult.h
index a48f3cd04c35e3058576a271c6b2b44c6b61df12..878d71bfdf896a90f96d0aa56ffa548627418746 100644
--- a/public/web/WebHitTestResult.h
+++ b/public/web/WebHitTestResult.h
@@ -35,6 +35,7 @@ class HitTestResult;
namespace blink {
class WebElement;
+class WebHitTestResultPrivate;
class WebNode;
class WebURL;
struct WebPoint;
@@ -74,11 +75,10 @@ public:
#if BLINK_IMPLEMENTATION
WebHitTestResult(const WebCore::HitTestResult&);
WebHitTestResult& operator=(const WebCore::HitTestResult&);
- operator WebCore::HitTestResult() const;
#endif
protected:
- WebPrivateOwnPtr<WebCore::HitTestResult> m_private;
+ WebPrivateOwnPtr<WebHitTestResultPrivate> m_private;
};
} // namespace blink
« Source/web/WebHitTestResult.cpp ('K') | « Source/web/mac/WebSubstringUtil.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698