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

Side by Side Diff: ash/wm/window_properties.h

Issue 11830008: ash/immersive mode: Hide the launcher when entering immersive mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move logic to RootWindowController Created 7 years, 11 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/wm/shelf_layout_manager.cc ('k') | ash/wm/window_properties.cc » ('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_WM_WINDOW_PROPERTIES_H_ 5 #ifndef ASH_WM_WINDOW_PROPERTIES_H_
6 #define ASH_WM_WINDOW_PROPERTIES_H_ 6 #define ASH_WM_WINDOW_PROPERTIES_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/wm/property_util.h" 9 #include "ash/wm/property_util.h"
10 #include "ui/aura/window.h" 10 #include "ui/aura/window.h"
(...skipping 25 matching lines...) Expand all
36 // A property key to disable the frame painter policy for solo windows. 36 // A property key to disable the frame painter policy for solo windows.
37 // It is only available for root windows. 37 // It is only available for root windows.
38 ASH_EXPORT extern const aura::WindowProperty<bool>* const 38 ASH_EXPORT extern const aura::WindowProperty<bool>* const
39 kIgnoreSoloWindowFramePainterPolicy; 39 kIgnoreSoloWindowFramePainterPolicy;
40 40
41 // True if the window is ignored by the shelf layout manager for purposes of 41 // True if the window is ignored by the shelf layout manager for purposes of
42 // darkening the shelf. 42 // darkening the shelf.
43 extern const aura::WindowProperty<bool>* const 43 extern const aura::WindowProperty<bool>* const
44 kIgnoredByShelfKey; 44 kIgnoredByShelfKey;
45 45
46 // True if this is a browser window in immersive mode.
47 ASH_EXPORT extern const aura::WindowProperty<bool>* const kImmersiveModeKey;
48
46 // Used to remember the show state before the window was minimized. 49 // Used to remember the show state before the window was minimized.
47 extern const aura::WindowProperty<ui::WindowShowState>* const 50 extern const aura::WindowProperty<ui::WindowShowState>* const
48 kRestoreShowStateKey; 51 kRestoreShowStateKey;
49 52
50 extern const aura::WindowProperty<RootWindowController*>* const 53 extern const aura::WindowProperty<RootWindowController*>* const
51 kRootWindowControllerKey; 54 kRootWindowControllerKey;
52 55
53 // A property key to remember the frame painter for the solo-window in the root 56 // A property key to remember the frame painter for the solo-window in the root
54 // window. It is only available for root windows. 57 // window. It is only available for root windows.
55 ASH_EXPORT extern const aura::WindowProperty<ash::FramePainter*>* const 58 ASH_EXPORT extern const aura::WindowProperty<ash::FramePainter*>* const
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // True if the window is controlled by the workspace manager. 97 // True if the window is controlled by the workspace manager.
95 extern const aura::WindowProperty<bool>* const 98 extern const aura::WindowProperty<bool>* const
96 kWindowTrackedByWorkspaceKey; 99 kWindowTrackedByWorkspaceKey;
97 100
98 // Alphabetical sort. 101 // Alphabetical sort.
99 102
100 } // namespace internal 103 } // namespace internal
101 } // namespace ash 104 } // namespace ash
102 105
103 #endif // ASH_WM_WINDOW_PROPERTIES_H_ 106 #endif // ASH_WM_WINDOW_PROPERTIES_H_
OLDNEW
« no previous file with comments | « ash/wm/shelf_layout_manager.cc ('k') | ash/wm/window_properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698