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

Side by Side Diff: athena/activity/activity_manager_impl.h

Issue 498023003: Delete activity upon window deletion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 6 years, 3 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 | « no previous file | athena/activity/activity_manager_impl.cc » ('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/activity/public/activity_manager.h"
6
7 #include <vector>
8
9 #include "base/macros.h"
10
11 namespace athena {
12
13 class ActivityManagerImpl : public ActivityManager {
14 public:
15 ActivityManagerImpl();
16 virtual ~ActivityManagerImpl();
17
18 int num_activities() const { return activities_.size(); }
19
20 // ActivityManager:
21 virtual void AddActivity(Activity* activity) OVERRIDE;
22 virtual void RemoveActivity(Activity* activity) OVERRIDE;
23 virtual void UpdateActivity(Activity* activity) OVERRIDE;
24
25 private:
26 std::vector<Activity*> activities_;
27
28 DISALLOW_COPY_AND_ASSIGN(ActivityManagerImpl);
29 };
30
31 } // namespace athena
OLDNEW
« no previous file with comments | « no previous file | athena/activity/activity_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698