summaryrefslogtreecommitdiffstats
path: root/ash/tooltips
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-24 05:42:46 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-24 05:42:46 +0000
commit55f59335f5983f427d3cad623034a6803a38c1ee (patch)
tree48deb522fa9431e2b939941f2741dd5f8145206d /ash/tooltips
parent0d10f2cabb86eae1e0c71413b3c1b84ea77a75f2 (diff)
downloadchromium_src-55f59335f5983f427d3cad623034a6803a38c1ee.zip
chromium_src-55f59335f5983f427d3cad623034a6803a38c1ee.tar.gz
chromium_src-55f59335f5983f427d3cad623034a6803a38c1ee.tar.bz2
Rename the aura_shell namespace to ash
http://crbug.com/108457 TEST=none TBR=sky Review URL: http://codereview.chromium.org/9033007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/tooltips')
-rw-r--r--ash/tooltips/tooltip_controller.cc4
-rw-r--r--ash/tooltips/tooltip_controller.h6
-rw-r--r--ash/tooltips/tooltip_controller_unittest.cc8
3 files changed, 9 insertions, 9 deletions
diff --git a/ash/tooltips/tooltip_controller.cc b/ash/tooltips/tooltip_controller.cc
index 661d04c..78d3475 100644
--- a/ash/tooltips/tooltip_controller.cc
+++ b/ash/tooltips/tooltip_controller.cc
@@ -121,7 +121,7 @@ views::Widget* CreateTooltip() {
} // namespace
-namespace aura_shell {
+namespace ash {
namespace internal {
// Displays a widget with tooltip using a views::Label.
@@ -293,4 +293,4 @@ void TooltipController::UpdateIfRequired() {
}
} // namespace internal
-} // namespace aura_shell
+} // namespace ash
diff --git a/ash/tooltips/tooltip_controller.h b/ash/tooltips/tooltip_controller.h
index 5ab55d64..2d1eb34 100644
--- a/ash/tooltips/tooltip_controller.h
+++ b/ash/tooltips/tooltip_controller.h
@@ -22,7 +22,7 @@ class TouchEvent;
class Window;
}
-namespace aura_shell {
+namespace ash {
namespace test {
class TooltipControllerTest;
@@ -53,7 +53,7 @@ class ASH_EXPORT TooltipController : public aura::client::TooltipClient,
virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE;
private:
- friend class aura_shell::test::TooltipControllerTest;
+ friend class ash::test::TooltipControllerTest;
class Tooltip;
@@ -75,6 +75,6 @@ class ASH_EXPORT TooltipController : public aura::client::TooltipClient,
};
} // namespace internal
-} // namespace aura_shell
+} // namespace ash
#endif // ASH_TOOLTIPS_TOOLTIP_CONTROLLER_H_
diff --git a/ash/tooltips/tooltip_controller_unittest.cc b/ash/tooltips/tooltip_controller_unittest.cc
index 8ac5937..2392a85 100644
--- a/ash/tooltips/tooltip_controller_unittest.cc
+++ b/ash/tooltips/tooltip_controller_unittest.cc
@@ -12,7 +12,7 @@
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
-namespace aura_shell {
+namespace ash {
namespace test {
namespace {
@@ -64,8 +64,8 @@ void AddViewToWidgetAndResize(views::Widget* widget, views::View* view) {
widget->SetBounds(contents_view_bounds);
}
-aura_shell::internal::TooltipController* GetController() {
- return static_cast<aura_shell::internal::TooltipController*>(
+ash::internal::TooltipController* GetController() {
+ return static_cast<ash::internal::TooltipController*>(
aura::client::GetTooltipClient());
}
@@ -176,4 +176,4 @@ TEST_F(TooltipControllerTest, TooltipsInMultipleViews) {
}
} // namespace test
-} // namespace aura_shell
+} // namespace ash