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

Side by Side Diff: Source/core/rendering/RenderLayerReflectionInfo.cpp

Issue 620753006: Rendering API cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 { 138 {
139 if (m_isPaintingInsideReflection) 139 if (m_isPaintingInsideReflection)
140 return; 140 return;
141 141
142 // Mark that we are now inside replica painting. 142 // Mark that we are now inside replica painting.
143 m_isPaintingInsideReflection = true; 143 m_isPaintingInsideReflection = true;
144 reflectionLayer()->paintLayer(context, paintingInfo, flags); 144 reflectionLayer()->paintLayer(context, paintingInfo, flags);
145 m_isPaintingInsideReflection = false; 145 m_isPaintingInsideReflection = false;
146 } 146 }
147 147
148 String RenderLayerReflectionInfo::debugName() const
Julien - ping for review 2014/10/02 16:47:49 Isn't this used in debug?
149 {
150 return box().debugName() + " (reflection)";
151 }
152
153 } // namespace blink 148 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698