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

Unified Diff: chrome/browser/ui/libgtkui/select_file_dialog_impl.cc

Issue 2707313002: Gtk: Change NULL to nullptr (Closed)
Patch Set: Created 3 years, 10 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
Index: chrome/browser/ui/libgtkui/select_file_dialog_impl.cc
diff --git a/chrome/browser/ui/libgtkui/select_file_dialog_impl.cc b/chrome/browser/ui/libgtkui/select_file_dialog_impl.cc
index 6a95ee0487853215ccb65248d6865a79682ae672..d1bc79753cff691e47c595e065e36fda20646006 100644
--- a/chrome/browser/ui/libgtkui/select_file_dialog_impl.cc
+++ b/chrome/browser/ui/libgtkui/select_file_dialog_impl.cc
@@ -28,8 +28,8 @@ UseKdeFileDialogStatus use_kde_ = UNKNOWN;
namespace libgtkui {
-base::FilePath* SelectFileDialogImpl::last_saved_path_ = NULL;
-base::FilePath* SelectFileDialogImpl::last_opened_path_ = NULL;
+base::FilePath* SelectFileDialogImpl::last_saved_path_ = nullptr;
+base::FilePath* SelectFileDialogImpl::last_opened_path_ = nullptr;
// static
ui::SelectFileDialog* SelectFileDialogImpl::Create(
@@ -81,7 +81,7 @@ SelectFileDialogImpl::SelectFileDialogImpl(Listener* listener,
SelectFileDialogImpl::~SelectFileDialogImpl() { }
void SelectFileDialogImpl::ListenerDestroyed() {
- listener_ = NULL;
+ listener_ = nullptr;
}
bool SelectFileDialogImpl::CallDirectoryExistsOnUIThread(
« no previous file with comments | « chrome/browser/ui/libgtkui/print_dialog_gtk.cc ('k') | chrome/browser/ui/libgtkui/select_file_dialog_impl_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698