summaryrefslogtreecommitdiffstats
path: root/ui/aura/client
diff options
context:
space:
mode:
Diffstat (limited to 'ui/aura/client')
-rw-r--r--ui/aura/client/aura_constants.cc3
-rw-r--r--ui/aura/client/aura_constants.h6
2 files changed, 7 insertions, 2 deletions
diff --git a/ui/aura/client/aura_constants.cc b/ui/aura/client/aura_constants.cc
index 34229e4..dd424ad 100644
--- a/ui/aura/client/aura_constants.cc
+++ b/ui/aura/client/aura_constants.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -9,6 +9,7 @@ namespace client {
// Alphabetical sort.
const char kAlwaysOnTopKey[] = "AlwaysOnTop";
+const char kAnimationsDisabledKey[] = "AnimationsDisabledKey";
const char kModalKey[] = "Modal";
const char kRestoreBoundsKey[] = "RestoreBounds";
const char kRootWindowInputMethod[] = "RootWindowInputMethod";
diff --git a/ui/aura/client/aura_constants.h b/ui/aura/client/aura_constants.h
index 7bd5e397..c524131 100644
--- a/ui/aura/client/aura_constants.h
+++ b/ui/aura/client/aura_constants.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -16,6 +16,10 @@ namespace client {
// 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 whether animations are disabled for the window. Type
+// of value is an int.
+AURA_EXPORT extern const char kAnimationsDisabledKey[];
+
// A property key to store the boolean property of window modality.
AURA_EXPORT extern const char kModalKey[];