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

Unified Diff: Source/core/layout/compositing/CompositingInputsUpdater.h

Issue 1162383003: C++11: Replace 0 with nullptr where applicable in layout code. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add one more file. Created 5 years, 6 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: Source/core/layout/compositing/CompositingInputsUpdater.h
diff --git a/Source/core/layout/compositing/CompositingInputsUpdater.h b/Source/core/layout/compositing/CompositingInputsUpdater.h
index 14643f48ac49bede6e30df3d868a3517d578894b..fe10915c5ff1d1992c233815ab467b2657895725 100644
--- a/Source/core/layout/compositing/CompositingInputsUpdater.h
+++ b/Source/core/layout/compositing/CompositingInputsUpdater.h
@@ -30,9 +30,9 @@ private:
struct AncestorInfo {
AncestorInfo()
- : ancestorStackingContext(0)
- , enclosingCompositedLayer(0)
- , lastScrollingAncestor(0)
+ : ancestorStackingContext(nullptr)
+ , enclosingCompositedLayer(nullptr)
+ , lastScrollingAncestor(nullptr)
, hasAncestorWithClipOrOverflowClip(false)
, hasAncestorWithClipPath(false)
{

Powered by Google App Engine
This is Rietveld 408576698