| Index: remoting/host/config_file_watcher.cc
|
| diff --git a/remoting/host/config_file_watcher.cc b/remoting/host/config_file_watcher.cc
|
| index f07b1ae9962a39c8d8b33ffd62c27bbfbf6f1683..07560855027653a9f772e17563c26dd12371d245 100644
|
| --- a/remoting/host/config_file_watcher.cc
|
| +++ b/remoting/host/config_file_watcher.cc
|
| @@ -96,7 +96,7 @@ ConfigFileWatcher::ConfigFileWatcher(
|
|
|
| ConfigFileWatcher::~ConfigFileWatcher() {
|
| impl_->StopWatching();
|
| - impl_ = NULL;
|
| + impl_ = nullptr;
|
| }
|
|
|
| void ConfigFileWatcher::Watch(ConfigWatcher::Delegate* delegate) {
|
| @@ -109,7 +109,7 @@ ConfigFileWatcherImpl::ConfigFileWatcherImpl(
|
| const base::FilePath& config_path)
|
| : config_path_(config_path),
|
| retries_(0),
|
| - delegate_(NULL),
|
| + delegate_(nullptr),
|
| main_task_runner_(main_task_runner),
|
| io_task_runner_(io_task_runner),
|
| weak_factory_(this) {
|
|
|