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

Side by Side Diff: athena/test/base/activity_lifetime_tracker.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 unified diff | Download patch
« no previous file with comments | « athena/test/base/activity_lifetime_tracker.h ('k') | athena/test/base/athena_test_helper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "athena/test/base/activity_lifetime_tracker.h" 5 #include "athena/test/base/activity_lifetime_tracker.h"
6 6
7 #include "athena/activity/public/activity_manager.h" 7 #include "athena/activity/public/activity_manager.h"
8 8
9 namespace athena { 9 namespace athena {
10 10
11 ActivityLifetimeTracker::ActivityLifetimeTracker() : new_activity_(NULL), 11 ActivityLifetimeTracker::ActivityLifetimeTracker()
12 deleted_activity_(NULL) { 12 : new_activity_(nullptr), deleted_activity_(nullptr) {
13 ActivityManager::Get()->AddObserver(this); 13 ActivityManager::Get()->AddObserver(this);
14 } 14 }
15 15
16 ActivityLifetimeTracker::~ActivityLifetimeTracker() { 16 ActivityLifetimeTracker::~ActivityLifetimeTracker() {
17 ActivityManager::Get()->RemoveObserver(this); 17 ActivityManager::Get()->RemoveObserver(this);
18 } 18 }
19 19
20 void ActivityLifetimeTracker::OnActivityStarted(Activity* activity) { 20 void ActivityLifetimeTracker::OnActivityStarted(Activity* activity) {
21 new_activity_ = activity; 21 new_activity_ = activity;
22 } 22 }
23 23
24 void ActivityLifetimeTracker::OnActivityEnding(Activity* activity) { 24 void ActivityLifetimeTracker::OnActivityEnding(Activity* activity) {
25 deleted_activity_ = activity; 25 deleted_activity_ = activity;
26 } 26 }
27 27
28 Activity* ActivityLifetimeTracker::GetNewActivityAndReset() { 28 Activity* ActivityLifetimeTracker::GetNewActivityAndReset() {
29 Activity* activity = new_activity_; 29 Activity* activity = new_activity_;
30 new_activity_ = NULL; 30 new_activity_ = nullptr;
31 return activity; 31 return activity;
32 } 32 }
33 33
34 void* ActivityLifetimeTracker::GetDeletedActivityAndReset() { 34 void* ActivityLifetimeTracker::GetDeletedActivityAndReset() {
35 void* activity = deleted_activity_; 35 void* activity = deleted_activity_;
36 deleted_activity_ = NULL; 36 deleted_activity_ = nullptr;
37 return activity; 37 return activity;
38 } 38 }
39 39
40 } // namespace athena 40 } // namespace athena
OLDNEW
« no previous file with comments | « athena/test/base/activity_lifetime_tracker.h ('k') | athena/test/base/athena_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698