summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvarunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-28 00:04:17 +0000
committervarunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-28 00:04:17 +0000
commitc18f3ceb89867bb83678bd8f9b24eac0212be867 (patch)
tree368d330931222ce44f6b14ae15ce7d438e35badc
parent1bd01835ac48be1a02cd173ec4263edf80f04237 (diff)
downloadchromium_src-c18f3ceb89867bb83678bd8f9b24eac0212be867.zip
chromium_src-c18f3ceb89867bb83678bd8f9b24eac0212be867.tar.gz
chromium_src-c18f3ceb89867bb83678bd8f9b24eac0212be867.tar.bz2
Build fix for win_aura
BUG=none TEST=none Review URL: http://codereview.chromium.org/8343040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107661 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--ui/aura/aura.gyp1
-rw-r--r--ui/aura/aura_constants.cc11
-rw-r--r--ui/aura/aura_constants.h2
3 files changed, 13 insertions, 1 deletions
diff --git a/ui/aura/aura.gyp b/ui/aura/aura.gyp
index ef64cfa..b042f21 100644
--- a/ui/aura/aura.gyp
+++ b/ui/aura/aura.gyp
@@ -23,6 +23,7 @@
'AURA_IMPLEMENTATION',
],
'sources': [
+ 'aura_constants.cc',
'aura_constants.h',
'aura_switches.cc',
'aura_switches.h',
diff --git a/ui/aura/aura_constants.cc b/ui/aura/aura_constants.cc
new file mode 100644
index 0000000..994a6ea
--- /dev/null
+++ b/ui/aura/aura_constants.cc
@@ -0,0 +1,11 @@
+// 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.
+
+#include "ui/aura/aura_constants.h"
+
+namespace aura {
+
+const char* kTooltipTextKey = "TooltipTextKey";
+
+}
diff --git a/ui/aura/aura_constants.h b/ui/aura/aura_constants.h
index 9099461..adb9fea 100644
--- a/ui/aura/aura_constants.h
+++ b/ui/aura/aura_constants.h
@@ -10,7 +10,7 @@
namespace aura {
-AURA_EXPORT const char* kTooltipTextKey = "TooltipTextKey";
+AURA_EXPORT extern const char* kTooltipTextKey;
} // namespace aura