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

Unified Diff: Source/core/layout/BidiRun.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
« no previous file with comments | « no previous file | Source/core/layout/BidiRunForLine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/BidiRun.h
diff --git a/Source/core/layout/BidiRun.h b/Source/core/layout/BidiRun.h
index 44bda444f6d5be439ff958aa62c36e9dbeda61a0..a325bf5b48d5ad35f56336f0cc1a39b296a88ddf 100644
--- a/Source/core/layout/BidiRun.h
+++ b/Source/core/layout/BidiRun.h
@@ -37,7 +37,7 @@ struct BidiRun : BidiCharacterRun {
BidiRun(int start, int stop, LayoutObject* object, BidiContext* context, WTF::Unicode::Direction dir)
: BidiCharacterRun(start, stop, context, dir)
, m_object(object)
- , m_box(0)
+ , m_box(nullptr)
{
// Stored in base class to save space.
m_hasHyphen = false;
« no previous file with comments | « no previous file | Source/core/layout/BidiRunForLine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698