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

Side by Side Diff: athena/activity/public/activity_view_model.h

Issue 548633005: Adding overview / layer framework to Activities so that unloaded / sleeping activities can be shown… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed 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/athena.gyp » ('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_ACTIVITY_PUBLIC_ACTIVITY_VIEW_MODEL_H_ 5 #ifndef ATHENA_ACTIVITY_PUBLIC_ACTIVITY_VIEW_MODEL_H_
6 #define ATHENA_ACTIVITY_PUBLIC_ACTIVITY_VIEW_MODEL_H_ 6 #define ATHENA_ACTIVITY_PUBLIC_ACTIVITY_VIEW_MODEL_H_
7 7
8 #include "athena/athena_export.h" 8 #include "athena/athena_export.h"
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 // Returns the contents view which might be NULL if the activity is not 48 // Returns the contents view which might be NULL if the activity is not
49 // loaded. Note that the caller should not hold on to the view since it can 49 // loaded. Note that the caller should not hold on to the view since it can
50 // be deleted by the resource manager. 50 // be deleted by the resource manager.
51 virtual views::View* GetContentsView() = 0; 51 virtual views::View* GetContentsView() = 0;
52 52
53 // Creates a custom widget for the activity. Returns NULL to use default 53 // Creates a custom widget for the activity. Returns NULL to use default
54 // implementation. 54 // implementation.
55 virtual views::Widget* CreateWidget() = 0; 55 virtual views::Widget* CreateWidget() = 0;
56 56
57 // This gets called before the Activity gets (partially) thrown out of memory
58 // to create a preview image of the activity. Note that even if this function
59 // gets called, |GetOverviewModeImage()| could still return an empty image.
60 virtual void CreateOverviewModeImage() = 0;
61
62 // Returns an image which can be used to represent the activity in e.g. the 57 // Returns an image which can be used to represent the activity in e.g. the
63 // overview mode. The returned image can have no size if either a view exists 58 // overview mode. The returned image can have no size if either a view exists
64 // or the activity has not yet been loaded. In that case 59 // or the activity has not yet been loaded. In that case
65 // GetRepresentativeColor() should be used to clear the preview area. 60 // GetRepresentativeColor() should be used to clear the preview area.
66 // Note: We intentionally do not use a layer / view for this. 61 // Note: We intentionally do not use a layer / view for this.
67 virtual gfx::ImageSkia GetOverviewModeImage() = 0; 62 virtual gfx::ImageSkia GetOverviewModeImage() = 0;
68 63
69 // Prepares the contents view for overview. 64 // Prepares the contents view for overview.
70 virtual void PrepareContentsForOverview() = 0; 65 virtual void PrepareContentsForOverview() = 0;
71 66
72 // Undoes any changes done by PrepareContentsForOverview(). 67 // Undoes any changes done by PrepareContentsForOverview().
73 virtual void ResetContentsView() = 0; 68 virtual void ResetContentsView() = 0;
74 }; 69 };
75 70
76 } // namespace athena 71 } // namespace athena
77 72
78 #endif // ATHENA_ACTIVITY_PUBLIC_ACTIVITY_VIEW_MODEL_H_ 73 #endif // ATHENA_ACTIVITY_PUBLIC_ACTIVITY_VIEW_MODEL_H_
OLDNEW
« no previous file with comments | « no previous file | athena/athena.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698