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

Unified Diff: cc/base/tiling_data.cc

Issue 632613002: [C++11 Allowed Features] Declares a type-safe null pointer converting from NULL to nullptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/base/swap_promise_monitor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/tiling_data.cc
diff --git a/cc/base/tiling_data.cc b/cc/base/tiling_data.cc
index 879d421878749f5e98651010bfa7abec427ae7df..a42fb3cf4fdd0392846e0564ba884917062ac948 100644
--- a/cc/base/tiling_data.cc
+++ b/cc/base/tiling_data.cc
@@ -299,7 +299,7 @@ TilingData::BaseIterator::BaseIterator(const TilingData* tiling_data)
index_y_(-1) {
}
-TilingData::Iterator::Iterator() : BaseIterator(NULL) { done(); }
+TilingData::Iterator::Iterator() : BaseIterator(nullptr) { done(); }
TilingData::Iterator::Iterator(const TilingData* tiling_data,
const gfx::Rect& consider_rect,
@@ -441,7 +441,7 @@ TilingData::DifferenceIterator& TilingData::DifferenceIterator::operator++() {
}
TilingData::SpiralDifferenceIterator::SpiralDifferenceIterator()
- : BaseIterator(NULL) {
+ : BaseIterator(nullptr) {
done();
}
« no previous file with comments | « cc/base/swap_promise_monitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698