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

Unified Diff: athena/extensions/chrome/athena_extension_install_ui.cc

Issue 653563004: NULL -> nullptr under athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src@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
Index: athena/extensions/chrome/athena_extension_install_ui.cc
diff --git a/athena/extensions/chrome/athena_extension_install_ui.cc b/athena/extensions/chrome/athena_extension_install_ui.cc
index a4bfaa39e8156b8c6c763bb1322d7d0c70573584..a23807ca4b3c38616e4b29cd76abd8668f09038b 100644
--- a/athena/extensions/chrome/athena_extension_install_ui.cc
+++ b/athena/extensions/chrome/athena_extension_install_ui.cc
@@ -58,7 +58,7 @@ void AthenaExtensionInstallUI::OnInstallSuccess(
base::string16 message = l10n_util::GetStringFUTF16(
IDS_EXTENSION_INSTALLED_HEADING, extension_name);
views::Widget* widget = views::DialogDelegate::CreateDialogWidget(
- new MessageDialogDelegate(message), NULL, NULL);
+ new MessageDialogDelegate(message), nullptr, nullptr);
widget->Show();
}
@@ -68,7 +68,7 @@ void AthenaExtensionInstallUI::OnInstallFailure(
return;
views::Widget* widget = views::DialogDelegate::CreateDialogWidget(
- new MessageDialogDelegate(error.message()), NULL, NULL);
+ new MessageDialogDelegate(error.message()), nullptr, nullptr);
widget->Show();
}
@@ -84,7 +84,7 @@ void AthenaExtensionInstallUI::SetSkipPostInstallUI(bool skip_ui) {
}
gfx::NativeWindow AthenaExtensionInstallUI::GetDefaultInstallDialogParent() {
- return NULL;
+ return nullptr;
}
} // namespace athena
« no previous file with comments | « athena/extensions/chrome/athena_chrome_app_delegate.cc ('k') | athena/extensions/chrome/extensions_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698