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

Side by Side Diff: ui/aura/client/aura_constants.h

Issue 2239233002: [ash-md] Fades overview header in and out (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [ash-md] Fades overview header in and out (rebase) Created 4 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
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 UI_AURA_CLIENT_AURA_CONSTANTS_H_ 5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_
6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_
7 7
8 #include "ui/aura/aura_export.h" 8 #include "ui/aura/aura_export.h"
9 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
10 #include "ui/base/ui_base_types.h" 10 #include "ui/base/ui_base_types.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 // See ui/base/ui_base_types.h for its definition. 68 // See ui/base/ui_base_types.h for its definition.
69 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const 69 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const
70 kShowStateKey; 70 kShowStateKey;
71 71
72 // The inset of the topmost view in the client view from the top of the 72 // The inset of the topmost view in the client view from the top of the
73 // non-client view. The topmost view depends on the window type. The topmost 73 // non-client view. The topmost view depends on the window type. The topmost
74 // view is the tab strip for tabbed browser windows, the toolbar for popups, 74 // view is the tab strip for tabbed browser windows, the toolbar for popups,
75 // the web contents for app windows and varies for fullscreen windows. 75 // the web contents for app windows and varies for fullscreen windows.
76 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; 76 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset;
77 77
78 // The color of the window header.
79 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewColor;
80
78 // A property key to store window icon. 81 // A property key to store window icon.
79 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; 82 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey;
80 83
81 // Alphabetical sort. 84 // Alphabetical sort.
82 85
83 } // namespace client 86 } // namespace client
84 } // namespace aura 87 } // namespace aura
85 88
86 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ 89 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698