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

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

Issue 9027020: Bypass ToplevelWindowEventFilter for panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 12 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include "ui/aura/aura_export.h" 9 #include "ui/aura/aura_export.h"
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 AURA_EXPORT extern const char kRootWindowTooltipClientKey[]; 51 AURA_EXPORT extern const char kRootWindowTooltipClientKey[];
52 52
53 // A property key to store ui::WindowShowState for a window. 53 // A property key to store ui::WindowShowState for a window.
54 // See ui/base/ui_base_types.h for its definition. 54 // See ui/base/ui_base_types.h for its definition.
55 AURA_EXPORT extern const char kShowStateKey[]; 55 AURA_EXPORT extern const char kShowStateKey[];
56 56
57 // A property key to store tooltip text for a window. The type of the value 57 // A property key to store tooltip text for a window. The type of the value
58 // is |string16*|. 58 // is |string16*|.
59 AURA_EXPORT extern const char kTooltipTextKey[]; 59 AURA_EXPORT extern const char kTooltipTextKey[];
60 60
61 // A property set to store the boolean property if the window is a panel.
62 AURA_EXPORT extern const char kPanelKey[];
63
61 // Alphabetical sort. 64 // Alphabetical sort.
62 65
63 } // namespace aura 66 } // namespace aura
64 67
65 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ 68 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698