diff options
Diffstat (limited to 'chromium/content/public/common/profiling.cc')
-rw-r--r-- | chromium/content/public/common/profiling.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/content/public/common/profiling.cc b/chromium/content/public/common/profiling.cc index d0835889baf..b304b3a136f 100644 --- a/chromium/content/public/common/profiling.cc +++ b/chromium/content/public/common/profiling.cc @@ -71,7 +71,7 @@ void FlushProfilingData(base::Thread* thread) { class ProfilingThreadControl { public: - ProfilingThreadControl() : thread_(NULL) {} + ProfilingThreadControl() : thread_(nullptr) {} void Start() { base::AutoLock locked(lock_); @@ -91,7 +91,7 @@ class ProfilingThreadControl { return; thread_->Stop(); delete thread_; - thread_ = NULL; + thread_ = nullptr; } private: |