| 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_CONTENT_APP_ACTIVITY_PROXY_H_ | 5 #ifndef ATHENA_CONTENT_APP_ACTIVITY_PROXY_H_ |
| 6 #define ATHENA_CONTENT_APP_ACTIVITY_PROXY_H_ | 6 #define ATHENA_CONTENT_APP_ACTIVITY_PROXY_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "athena/activity/public/activity.h" | 10 #include "athena/activity/public/activity.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 // itself indirectly. | 22 // itself indirectly. |
| 23 class AppActivityProxy : public Activity, | 23 class AppActivityProxy : public Activity, |
| 24 public ActivityViewModel { | 24 public ActivityViewModel { |
| 25 public: | 25 public: |
| 26 // The |replaced_activity| is the activity which this proxy replaces. Note | 26 // The |replaced_activity| is the activity which this proxy replaces. Note |
| 27 // that after the Init() call got called, this object will become invalid. | 27 // that after the Init() call got called, this object will become invalid. |
| 28 // The |creator| should be informed when the object goes away. | 28 // The |creator| should be informed when the object goes away. |
| 29 AppActivityProxy(AppActivity* replaced_activity, | 29 AppActivityProxy(AppActivity* replaced_activity, |
| 30 AppActivityRegistry* creator); | 30 AppActivityRegistry* creator); |
| 31 | 31 |
| 32 protected: | 32 // Activity overrides: |
| 33 ~AppActivityProxy() override; | |
| 34 | |
| 35 // Activity overrides: | |
| 36 ActivityViewModel* GetActivityViewModel() override; | 33 ActivityViewModel* GetActivityViewModel() override; |
| 37 void SetCurrentState(ActivityState state) override; | 34 void SetCurrentState(ActivityState state) override; |
| 38 ActivityState GetCurrentState() override; | 35 ActivityState GetCurrentState() override; |
| 39 bool IsVisible() override; | 36 bool IsVisible() override; |
| 40 ActivityMediaState GetMediaState() override; | 37 ActivityMediaState GetMediaState() override; |
| 41 aura::Window* GetWindow() override; | 38 aura::Window* GetWindow() override; |
| 42 content::WebContents* GetWebContents() override; | 39 content::WebContents* GetWebContents() override; |
| 43 | 40 |
| 44 // ActivityViewModel overrides: | 41 // ActivityViewModel overrides: |
| 45 void Init() override; | 42 void Init() override; |
| 46 SkColor GetRepresentativeColor() const override; | 43 SkColor GetRepresentativeColor() const override; |
| 47 base::string16 GetTitle() const override; | 44 base::string16 GetTitle() const override; |
| 48 gfx::ImageSkia GetIcon() const override; | 45 gfx::ImageSkia GetIcon() const override; |
| 49 bool UsesFrame() const override; | 46 bool UsesFrame() const override; |
| 50 views::View* GetContentsView() override; | 47 views::View* GetContentsView() override; |
| 51 views::Widget* CreateWidget() override; | 48 views::Widget* CreateWidget() override; |
| 52 gfx::ImageSkia GetOverviewModeImage() override; | 49 gfx::ImageSkia GetOverviewModeImage() override; |
| 53 void PrepareContentsForOverview() override; | 50 void PrepareContentsForOverview() override; |
| 54 void ResetContentsView() override; | 51 void ResetContentsView() override; |
| 55 | 52 |
| 53 protected: |
| 54 ~AppActivityProxy() override; |
| 55 |
| 56 private: | 56 private: |
| 57 // The creator of this object which needs to be informed if the object gets | 57 // The creator of this object which needs to be informed if the object gets |
| 58 // destroyed or the application should get restarted. | 58 // destroyed or the application should get restarted. |
| 59 AppActivityRegistry* app_activity_registry_; | 59 AppActivityRegistry* app_activity_registry_; |
| 60 | 60 |
| 61 // The presentation values. | 61 // The presentation values. |
| 62 const base::string16 title_; | 62 const base::string16 title_; |
| 63 const SkColor color_; | 63 const SkColor color_; |
| 64 | 64 |
| 65 // The activity which gets replaced. It is used to sort the activity against | 65 // The activity which gets replaced. It is used to sort the activity against |
| 66 // upon initialization. Once moved, this value gets reset since the object | 66 // upon initialization. Once moved, this value gets reset since the object |
| 67 // can go away at any time. | 67 // can go away at any time. |
| 68 AppActivity* replaced_activity_; | 68 AppActivity* replaced_activity_; |
| 69 | 69 |
| 70 // The associated view. | 70 // The associated view. |
| 71 views::View* view_; | 71 views::View* view_; |
| 72 | 72 |
| 73 // The content proxy. | 73 // The content proxy. |
| 74 scoped_ptr<ContentProxy> content_proxy_; | 74 scoped_ptr<ContentProxy> content_proxy_; |
| 75 | 75 |
| 76 // True if restart got already called. | 76 // True if restart got already called. |
| 77 bool restart_called_; | 77 bool restart_called_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(AppActivityProxy); | 79 DISALLOW_COPY_AND_ASSIGN(AppActivityProxy); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace athena | 82 } // namespace athena |
| 83 | 83 |
| 84 #endif // ATHENA_CONTENT_APP_ACTIVITY_PROXY_H_ | 84 #endif // ATHENA_CONTENT_APP_ACTIVITY_PROXY_H_ |
| OLD | NEW |