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

Side by Side Diff: ash/shelf/shelf_types.h

Issue 18637004: Sets the background color of shelf is opaque black when maximized (2nd) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove log Created 7 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 | « ash/shelf/shelf_layout_manager_unittest.cc ('k') | ash/shelf/shelf_widget.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 ASH_SHELF_SHELF_TYPES_H_ 5 #ifndef ASH_SHELF_SHELF_TYPES_H_
6 #define ASH_SHELF_SHELF_TYPES_H_ 6 #define ASH_SHELF_SHELF_TYPES_H_
7 7
8 namespace ash { 8 namespace ash {
9 9
10 enum ShelfAlignment { 10 enum ShelfAlignment {
(...skipping 23 matching lines...) Expand all
34 34
35 // Nothing is shown. Used for fullscreen windows. 35 // Nothing is shown. Used for fullscreen windows.
36 SHELF_HIDDEN, 36 SHELF_HIDDEN,
37 }; 37 };
38 38
39 enum ShelfAutoHideState { 39 enum ShelfAutoHideState {
40 SHELF_AUTO_HIDE_SHOWN, 40 SHELF_AUTO_HIDE_SHOWN,
41 SHELF_AUTO_HIDE_HIDDEN, 41 SHELF_AUTO_HIDE_HIDDEN,
42 }; 42 };
43 43
44 enum ShelfBackgroundType {
45 // The default transparent background.
46 SHELF_BACKGROUND_DEFAULT,
47
48 // The background when a window is overlapping.
49 SHELF_BACKGROUND_OVERLAP,
50
51 // The background when a window is maximized.
52 SHELF_BACKGROUND_MAXIMIZED,
53 };
54
44 } // namespace ash 55 } // namespace ash
45 56
46 #endif // ASH_SHELF_SHELF_TYPES_H_ 57 #endif // ASH_SHELF_SHELF_TYPES_H_
OLDNEW
« no previous file with comments | « ash/shelf/shelf_layout_manager_unittest.cc ('k') | ash/shelf/shelf_widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698