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

Unified Diff: athena/extensions/shell/extensions_delegate_impl.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/shell/extensions_delegate_impl.cc
diff --git a/athena/extensions/shell/extensions_delegate_impl.cc b/athena/extensions/shell/extensions_delegate_impl.cc
index bd797f88a3a3fb3719a6e4c2a8da32ca63fb744a..4b468ef98a1e2999fdfb4827e679a49e75ad483b 100644
--- a/athena/extensions/shell/extensions_delegate_impl.cc
+++ b/athena/extensions/shell/extensions_delegate_impl.cc
@@ -22,7 +22,9 @@ class ShellExtensionsDelegate : public ExtensionsDelegate {
extensions::AppWindowClient::Set(&app_window_client_);
}
- virtual ~ShellExtensionsDelegate() { extensions::AppWindowClient::Set(NULL); }
+ virtual ~ShellExtensionsDelegate() {
+ extensions::AppWindowClient::Set(nullptr);
+ }
private:
// ExtensionsDelegate:
« no previous file with comments | « athena/extensions/shell/athena_shell_app_delegate.cc ('k') | athena/extensions/shell/shell_search_controller_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698