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_BASE_SAMPLE_ACTIVITY_H_ | 5 #ifndef ATHENA_TEST_BASE_SAMPLE_ACTIVITY_H_ |
6 #define ATHENA_TEST_BASE_SAMPLE_ACTIVITY_H_ | 6 #define ATHENA_TEST_BASE_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 22 matching lines...) Expand all Loading... |
33 bool IsVisible() override; | 33 bool IsVisible() override; |
34 ActivityMediaState GetMediaState() override; | 34 ActivityMediaState GetMediaState() override; |
35 aura::Window* GetWindow() override; | 35 aura::Window* GetWindow() override; |
36 content::WebContents* GetWebContents() override; | 36 content::WebContents* GetWebContents() override; |
37 | 37 |
38 // athena::ActivityViewModel: | 38 // athena::ActivityViewModel: |
39 void Init() override; | 39 void Init() override; |
40 SkColor GetRepresentativeColor() const override; | 40 SkColor GetRepresentativeColor() const override; |
41 base::string16 GetTitle() const override; | 41 base::string16 GetTitle() const override; |
42 gfx::ImageSkia GetIcon() const override; | 42 gfx::ImageSkia GetIcon() const override; |
| 43 void SetActivityView(ActivityView* activity_view) override; |
43 bool UsesFrame() const override; | 44 bool UsesFrame() const override; |
44 views::View* GetContentsView() override; | 45 views::View* GetContentsView() override; |
45 gfx::ImageSkia GetOverviewModeImage() override; | 46 gfx::ImageSkia GetOverviewModeImage() override; |
46 void PrepareContentsForOverview() override; | 47 void PrepareContentsForOverview() override; |
47 void ResetContentsView() override; | 48 void ResetContentsView() override; |
48 | 49 |
49 private: | 50 private: |
50 SkColor color_; | 51 SkColor color_; |
51 SkColor contents_color_; | 52 SkColor contents_color_; |
52 base::string16 title_; | 53 base::string16 title_; |
53 views::View* contents_view_; | 54 views::View* contents_view_; |
54 | 55 |
55 // The current state for this activity. | 56 // The current state for this activity. |
56 ActivityState current_state_; | 57 ActivityState current_state_; |
57 | 58 |
58 // This is to emulate real implementation. | 59 // This is to emulate real implementation. |
59 scoped_ptr<AcceleratorManager> accelerator_manager_; | 60 scoped_ptr<AcceleratorManager> accelerator_manager_; |
60 | 61 |
61 DISALLOW_COPY_AND_ASSIGN(SampleActivity); | 62 DISALLOW_COPY_AND_ASSIGN(SampleActivity); |
62 }; | 63 }; |
63 | 64 |
64 } // namespace test | 65 } // namespace test |
65 } // namespace athena | 66 } // namespace athena |
66 | 67 |
67 #endif // ATHENA_TEST_BASE_SAMPLE_ACTIVITY_H_ | 68 #endif // ATHENA_TEST_BASE_SAMPLE_ACTIVITY_H_ |
OLD | NEW |