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

Unified Diff: ui/aura/aura_constants.h

Issue 8387043: [Aura] Support always-on-top top level window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: support always-on-top change after creation, add unittests and fix XCursorCache issue Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/aura/aura_constants.cc » ('j') | ui/aura/aura_constants.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/aura_constants.h
diff --git a/ui/aura/aura_constants.h b/ui/aura/aura_constants.h
index 66a691141a2e7ed1a2a84d1b2a1054ed9413a98a..ec42879658b92872721a41def20c789eccad1acc 100644
--- a/ui/aura/aura_constants.h
+++ b/ui/aura/aura_constants.h
@@ -11,17 +11,20 @@
namespace aura {
// Window property keys that are shared between aura_shell and chrome/views.
+// A property key to store always-on-top flag. The type of the value is boolean.
+AURA_EXPORT extern const char kAlwaysOnTopKey[];
+
// A property key to store the restore bounds for a window. The type
// of the value is |gfx::Rect*|.
-AURA_EXPORT extern const char* kRestoreBoundsKey;
+AURA_EXPORT extern const char kRestoreBoundsKey[];
// A property key to store ui::WindowShowState for a window.
// See ui/base/ui_base_types.h for its definition.
-AURA_EXPORT extern const char* kShowStateKey;
+AURA_EXPORT extern const char kShowStateKey[];
// A property key to store tooltip text for a window. The type of the value
-// is |std::string*|.
-AURA_EXPORT extern const char* kTooltipTextKey;
+// is |string16*|.
+AURA_EXPORT extern const char kTooltipTextKey[];
} // namespace aura
« no previous file with comments | « no previous file | ui/aura/aura_constants.cc » ('j') | ui/aura/aura_constants.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698