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

Unified Diff: athena/content/app_activity_registry.h

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
« no previous file with comments | « athena/content/app_activity_proxy.cc ('k') | athena/content/app_activity_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/content/app_activity_registry.h
diff --git a/athena/content/app_activity_registry.h b/athena/content/app_activity_registry.h
index cce807106120c5809f4de0aa1d001aa4bc377ae9..da8255c65a8fb840ea1d32f0decf8271244eeb08 100644
--- a/athena/content/app_activity_registry.h
+++ b/athena/content/app_activity_registry.h
@@ -45,7 +45,7 @@ class ATHENA_EXPORT AppActivityRegistry {
// Returns the number of activities/windows with this application.
int NumberOfActivities() const { return activity_list_.size(); }
- // Returns the |AppActivity| at |index|. It will return NULL if an invalid
+ // Returns the |AppActivity| at |index|. It will return nullptr if an invalid
// index was specified.
AppActivity* GetAppActivityAt(size_t index);
@@ -53,7 +53,7 @@ class ATHENA_EXPORT AppActivityRegistry {
void Unload();
// Returns true if the application is in the unloaded state.
- bool IsUnloaded() { return unloaded_activity_proxy_ != NULL; }
+ bool IsUnloaded() { return unloaded_activity_proxy_ != nullptr; }
content::BrowserContext* browser_context() const { return browser_context_; }
const std::string& app_id() const { return app_id_; }
« no previous file with comments | « athena/content/app_activity_proxy.cc ('k') | athena/content/app_activity_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698