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

Side by Side Diff: athena/test/sample_activity.h

Issue 358003002: Additions to Activities to allow resource management (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « athena/content/web_activity.cc ('k') | athena/test/sample_activity.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 #ifndef ATHENA_TEST_SAMPLE_ACTIVITY_H_ 5 #ifndef ATHENA_TEST_SAMPLE_ACTIVITY_H_
6 #define ATHENA_TEST_SAMPLE_ACTIVITY_H_ 6 #define ATHENA_TEST_SAMPLE_ACTIVITY_H_
7 7
8 #include "athena/activity/public/activity.h" 8 #include "athena/activity/public/activity.h"
9 #include "athena/activity/public/activity_view_model.h" 9 #include "athena/activity/public/activity_view_model.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "ui/gfx/image/image_skia.h"
11 12
12 namespace athena { 13 namespace athena {
13 namespace test { 14 namespace test {
14 15
15 class SampleActivity : public Activity, 16 class SampleActivity : public Activity,
16 public ActivityViewModel { 17 public ActivityViewModel {
17 public: 18 public:
18 SampleActivity(SkColor color, 19 SampleActivity(SkColor color,
19 SkColor contents_color, 20 SkColor contents_color,
20 const base::string16& title); 21 const base::string16& title);
21 virtual ~SampleActivity(); 22 virtual ~SampleActivity();
22 23
23 private: 24 private:
24 // athena::Activity: 25 // athena::Activity:
25 virtual athena::ActivityViewModel* GetActivityViewModel() OVERRIDE; 26 virtual athena::ActivityViewModel* GetActivityViewModel() OVERRIDE;
27 virtual void SetCurrentState(Activity::ActivityState state) OVERRIDE;
28 virtual ActivityState GetCurrentState() OVERRIDE;
29 virtual bool IsVisible() OVERRIDE;
30 virtual ActivityMediaState GetMediaState() OVERRIDE;
26 31
27 // athena::ActivityViewModel: 32 // athena::ActivityViewModel:
28 virtual void Init() OVERRIDE; 33 virtual void Init() OVERRIDE;
29 virtual SkColor GetRepresentativeColor() const OVERRIDE; 34 virtual SkColor GetRepresentativeColor() const OVERRIDE;
30 virtual base::string16 GetTitle() const OVERRIDE; 35 virtual base::string16 GetTitle() const OVERRIDE;
31 virtual bool UsesFrame() const OVERRIDE; 36 virtual bool UsesFrame() const OVERRIDE;
32 virtual views::View* GetContentsView() OVERRIDE; 37 virtual views::View* GetContentsView() OVERRIDE;
38 virtual void CreateOverviewModeImage() OVERRIDE;
39 virtual gfx::ImageSkia GetOverviewModeImage() OVERRIDE;
33 40
34 SkColor color_; 41 SkColor color_;
35 SkColor contents_color_; 42 SkColor contents_color_;
36 base::string16 title_; 43 base::string16 title_;
37 views::View* contents_view_; 44 views::View* contents_view_;
38 45
46 // The current state for this activity.
47 ActivityState current_state_;
48
39 DISALLOW_COPY_AND_ASSIGN(SampleActivity); 49 DISALLOW_COPY_AND_ASSIGN(SampleActivity);
40 }; 50 };
41 51
42 } // namespace test 52 } // namespace test
43 } // namespace athena 53 } // namespace athena
44 54
45 #endif // ATHENA_TEST_SAMPLE_ACTIVITY_H_ 55 #endif // ATHENA_TEST_SAMPLE_ACTIVITY_H_
OLDNEW
« no previous file with comments | « athena/content/web_activity.cc ('k') | athena/test/sample_activity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698