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

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

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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_browser_test.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "athena/test/base/activity_lifetime_tracker.h"
6
7 #include "athena/activity/public/activity_manager.h"
8
9 namespace athena {
10
11 ActivityLifetimeTracker::ActivityLifetimeTracker()
12 : new_activity_(nullptr), deleted_activity_(nullptr) {
13 ActivityManager::Get()->AddObserver(this);
14 }
15
16 ActivityLifetimeTracker::~ActivityLifetimeTracker() {
17 ActivityManager::Get()->RemoveObserver(this);
18 }
19
20 void ActivityLifetimeTracker::OnActivityStarted(Activity* activity) {
21 new_activity_ = activity;
22 }
23
24 void ActivityLifetimeTracker::OnActivityEnding(Activity* activity) {
25 deleted_activity_ = activity;
26 }
27
28 void ActivityLifetimeTracker::OnActivityOrderChanged() {
29 }
30
31 Activity* ActivityLifetimeTracker::GetNewActivityAndReset() {
32 Activity* activity = new_activity_;
33 new_activity_ = nullptr;
34 return activity;
35 }
36
37 void* ActivityLifetimeTracker::GetDeletedActivityAndReset() {
38 void* activity = deleted_activity_;
39 deleted_activity_ = nullptr;
40 return activity;
41 }
42
43 } // namespace athena
OLDNEW
« no previous file with comments | « athena/test/base/activity_lifetime_tracker.h ('k') | athena/test/base/athena_browser_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698