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

Unified Diff: third_party/WebKit/Source/core/html/RelList.h

Issue 1715653002: Fix non-Oilpan ref pointer usage over DOMTokenLists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: third_party/WebKit/Source/core/html/RelList.h
diff --git a/third_party/WebKit/Source/core/html/RelList.h b/third_party/WebKit/Source/core/html/RelList.h
index 2f0825bd89f4cbab041bace2cdbe5bf73d781aee..a34a18ebd5b0f20990e378157a98211263de38d8 100644
--- a/third_party/WebKit/Source/core/html/RelList.h
+++ b/third_party/WebKit/Source/core/html/RelList.h
@@ -19,6 +19,11 @@ public:
return adoptRefWillBeNoop(new RelList(element));
}
+#if !ENABLE(OILPAN)
+ void ref() override;
+ void deref() override;
+#endif
+
unsigned length() const override;
const AtomicString item(unsigned index) const override;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLLinkElement.cpp ('k') | third_party/WebKit/Source/core/html/RelList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698