| OLD | NEW |
| 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" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 const base::string16& title); | 21 const base::string16& title); |
| 22 virtual ~SampleActivity(); | 22 virtual ~SampleActivity(); |
| 23 | 23 |
| 24 private: | 24 private: |
| 25 // athena::Activity: | 25 // athena::Activity: |
| 26 virtual athena::ActivityViewModel* GetActivityViewModel() OVERRIDE; | 26 virtual athena::ActivityViewModel* GetActivityViewModel() OVERRIDE; |
| 27 virtual void SetCurrentState(Activity::ActivityState state) OVERRIDE; | 27 virtual void SetCurrentState(Activity::ActivityState state) OVERRIDE; |
| 28 virtual ActivityState GetCurrentState() OVERRIDE; | 28 virtual ActivityState GetCurrentState() OVERRIDE; |
| 29 virtual bool IsVisible() OVERRIDE; | 29 virtual bool IsVisible() OVERRIDE; |
| 30 virtual ActivityMediaState GetMediaState() OVERRIDE; | 30 virtual ActivityMediaState GetMediaState() OVERRIDE; |
| 31 virtual aura::Window* GetWindow() OVERRIDE; | |
| 32 | 31 |
| 33 // athena::ActivityViewModel: | 32 // athena::ActivityViewModel: |
| 34 virtual void Init() OVERRIDE; | 33 virtual void Init() OVERRIDE; |
| 35 virtual SkColor GetRepresentativeColor() const OVERRIDE; | 34 virtual SkColor GetRepresentativeColor() const OVERRIDE; |
| 36 virtual base::string16 GetTitle() const OVERRIDE; | 35 virtual base::string16 GetTitle() const OVERRIDE; |
| 37 virtual bool UsesFrame() const OVERRIDE; | 36 virtual bool UsesFrame() const OVERRIDE; |
| 38 virtual views::View* GetContentsView() OVERRIDE; | 37 virtual views::View* GetContentsView() OVERRIDE; |
| 39 virtual void CreateOverviewModeImage() OVERRIDE; | 38 virtual void CreateOverviewModeImage() OVERRIDE; |
| 40 virtual gfx::ImageSkia GetOverviewModeImage() OVERRIDE; | 39 virtual gfx::ImageSkia GetOverviewModeImage() OVERRIDE; |
| 41 | 40 |
| 42 SkColor color_; | 41 SkColor color_; |
| 43 SkColor contents_color_; | 42 SkColor contents_color_; |
| 44 base::string16 title_; | 43 base::string16 title_; |
| 45 views::View* contents_view_; | 44 views::View* contents_view_; |
| 46 | 45 |
| 47 // The current state for this activity. | 46 // The current state for this activity. |
| 48 ActivityState current_state_; | 47 ActivityState current_state_; |
| 49 | 48 |
| 50 DISALLOW_COPY_AND_ASSIGN(SampleActivity); | 49 DISALLOW_COPY_AND_ASSIGN(SampleActivity); |
| 51 }; | 50 }; |
| 52 | 51 |
| 53 } // namespace test | 52 } // namespace test |
| 54 } // namespace athena | 53 } // namespace athena |
| 55 | 54 |
| 56 #endif // ATHENA_TEST_SAMPLE_ACTIVITY_H_ | 55 #endif // ATHENA_TEST_SAMPLE_ACTIVITY_H_ |
| OLD | NEW |