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

Side by Side Diff: athena/test/base/activity_lifetime_tracker.cc

Issue 694353004: athena: Expose the list of activities from the ActivityManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 1 month 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') | no next file » | 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() 11 ActivityLifetimeTracker::ActivityLifetimeTracker()
12 : new_activity_(nullptr), deleted_activity_(nullptr) { 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 void ActivityLifetimeTracker::OnActivityOrderChanged() {
29 }
30
28 Activity* ActivityLifetimeTracker::GetNewActivityAndReset() { 31 Activity* ActivityLifetimeTracker::GetNewActivityAndReset() {
29 Activity* activity = new_activity_; 32 Activity* activity = new_activity_;
30 new_activity_ = nullptr; 33 new_activity_ = nullptr;
31 return activity; 34 return activity;
32 } 35 }
33 36
34 void* ActivityLifetimeTracker::GetDeletedActivityAndReset() { 37 void* ActivityLifetimeTracker::GetDeletedActivityAndReset() {
35 void* activity = deleted_activity_; 38 void* activity = deleted_activity_;
36 deleted_activity_ = nullptr; 39 deleted_activity_ = nullptr;
37 return activity; 40 return activity;
38 } 41 }
39 42
40 } // namespace athena 43 } // namespace athena
OLDNEW
« no previous file with comments | « athena/test/base/activity_lifetime_tracker.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698