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

Unified Diff: third_party/WebKit/public/web/WebElement.h

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 | « third_party/WebKit/public/web/WebDocument.h ('k') | third_party/WebKit/public/web/WebElementCollection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebElement.h
diff --git a/third_party/WebKit/public/web/WebElement.h b/third_party/WebKit/public/web/WebElement.h
index 327e77fd4506a9876d414eb86f51d7fd92360e01..a8389576f8430c28338c04b7e8fbcce930dc63f3 100644
--- a/third_party/WebKit/public/web/WebElement.h
+++ b/third_party/WebKit/public/web/WebElement.h
@@ -80,9 +80,9 @@ public:
BLINK_EXPORT WebImage imageContents();
#if BLINK_IMPLEMENTATION
- BLINK_EXPORT WebElement(const RawPtr<Element>&);
- BLINK_EXPORT WebElement& operator=(const RawPtr<Element>&);
- BLINK_EXPORT operator RawPtr<Element>() const;
+ BLINK_EXPORT WebElement(Element*);
+ BLINK_EXPORT WebElement& operator=(Element*);
+ BLINK_EXPORT operator Element*() const;
#endif
};
« no previous file with comments | « third_party/WebKit/public/web/WebDocument.h ('k') | third_party/WebKit/public/web/WebElementCollection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698