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

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, 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/dom/IntersectionObservation.h
diff --git a/third_party/WebKit/Source/core/dom/IntersectionObservation.h b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
index d8e69ef09417e9662ecf53708ae47042acabf789..057a3d151968141ffdaddc2ecd8fc4699595357f 100644
--- a/third_party/WebKit/Source/core/dom/IntersectionObservation.h
+++ b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
@@ -50,7 +50,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_active : 1;
unsigned m_shouldReportRootBounds : 1;

Powered by Google App Engine
This is Rietveld 408576698