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

Unified Diff: public/web/WebHitTestResult.h

Issue 413903004: Oilpan: Change Persistent<> data members to Member<> in HitTestResult. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « 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 c8d45e8ec33c5b31dcb6480332480f9ac3653fa4..29317a01e4c09bcc25b95696e1a0267645419e07 100644
--- a/public/web/WebHitTestResult.h
+++ b/public/web/WebHitTestResult.h
@@ -26,7 +26,7 @@
#ifndef WebHitTestResult_h
#define WebHitTestResult_h
-#include "../platform/WebPrivateOwnPtr.h"
+#include "../platform/WebPrivatePtr.h"
namespace blink {
class HitTestResult;
@@ -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 blink::HitTestResult&);
WebHitTestResult& operator=(const blink::HitTestResult&);
- operator blink::HitTestResult() const;
#endif
protected:
- WebPrivateOwnPtr<blink::HitTestResult> m_private;
+ WebPrivatePtr<WebHitTestResultPrivate> m_private;
};
} // namespace blink
« no previous file with comments | « Source/web/mac/WebSubstringUtil.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698