summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorvarunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-27 21:39:36 +0000
committervarunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-27 21:39:36 +0000
commit53d47b9800c3fe909b3dcdfbd6875feca860af76 (patch)
tree5f4490a14ec87d8a9a2b6e60cf00ae1c2269562d /ui
parent582b55d4a0ee1c0ceea48b1b337b4b71597f9fe0 (diff)
downloadchromium_src-53d47b9800c3fe909b3dcdfbd6875feca860af76.zip
chromium_src-53d47b9800c3fe909b3dcdfbd6875feca860af76.tar.gz
chromium_src-53d47b9800c3fe909b3dcdfbd6875feca860af76.tar.bz2
Enable tooltips for aura.
BUG=97249 TEST=none Review URL: http://codereview.chromium.org/8371024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107630 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r--ui/aura/aura.gyp1
-rw-r--r--ui/aura/aura_constants.h17
2 files changed, 18 insertions, 0 deletions
diff --git a/ui/aura/aura.gyp b/ui/aura/aura.gyp
index 84fcb0e..ef64cfa 100644
--- a/ui/aura/aura.gyp
+++ b/ui/aura/aura.gyp
@@ -23,6 +23,7 @@
'AURA_IMPLEMENTATION',
],
'sources': [
+ 'aura_constants.h',
'aura_switches.cc',
'aura_switches.h',
'cursor.h',
diff --git a/ui/aura/aura_constants.h b/ui/aura/aura_constants.h
new file mode 100644
index 0000000..9099461
--- /dev/null
+++ b/ui/aura/aura_constants.h
@@ -0,0 +1,17 @@
+// Copyright (c) 2011 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.
+
+#ifndef UI_AURA_AURA_CONSTANTS_H_
+#define UI_AURA_AURA_CONSTANTS_H_
+#pragma once
+
+#include "ui/aura/aura_export.h"
+
+namespace aura {
+
+AURA_EXPORT const char* kTooltipTextKey = "TooltipTextKey";
+
+} // namespace aura
+
+#endif // UI_AURA_AURA_CONSTANTS_H_