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

Unified Diff: third_party/WebKit/Source/core/dom/IntersectionObservation.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/dom/IntersectionObservation.h
diff --git a/third_party/WebKit/Source/core/dom/IntersectionObservation.h b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
index 0d50498d2791bebefddcb68f7a69c77da5dd994e..477f361be1fb4f16ed123b4b8ce7bbbc9fdccbbd 100644
--- a/third_party/WebKit/Source/core/dom/IntersectionObservation.h
+++ b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
@@ -54,7 +54,7 @@ private:
// TODO(szager): Why Node instead of Element? Because NodeIntersectionObserverData::createWeakPtr()
// returns a WeakPtr<Node>, which cannot be coerced into a WeakPtr<Element>. When oilpan rolls out,
// this can be changed to WeakMember<Element>.
- WeakPtrWillBeWeakMember<Node> m_target;
+ WeakMember<Node> m_target;
unsigned m_shouldReportRootBounds : 1;
unsigned m_lastThresholdIndex : 30;

Powered by Google App Engine
This is Rietveld 408576698