summaryrefslogtreecommitdiffstats
path: root/ash/test/overflow_bubble_view_test_api.h
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-03 20:59:28 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-03 20:59:28 +0000
commit093b8d64a16506cf8f2bd77d8b0cc7446065add3 (patch)
treecc28b83de1bb4c9bfba0fc48c004405c97b95441 /ash/test/overflow_bubble_view_test_api.h
parente95d6cdbc67f44abb6e4254b869d1f704305d559 (diff)
downloadchromium_src-093b8d64a16506cf8f2bd77d8b0cc7446065add3.zip
chromium_src-093b8d64a16506cf8f2bd77d8b0cc7446065add3.tar.gz
chromium_src-093b8d64a16506cf8f2bd77d8b0cc7446065add3.tar.bz2
Eliminate ash::internal namespace
Plus obvious style nit fixes. BUG=None TBR=sky@chromium.org Review URL: https://codereview.chromium.org/224113005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/test/overflow_bubble_view_test_api.h')
-rw-r--r--ash/test/overflow_bubble_view_test_api.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/ash/test/overflow_bubble_view_test_api.h b/ash/test/overflow_bubble_view_test_api.h
index b789b73..2bd5f27 100644
--- a/ash/test/overflow_bubble_view_test_api.h
+++ b/ash/test/overflow_bubble_view_test_api.h
@@ -12,16 +12,13 @@ class Size;
}
namespace ash {
-
-namespace internal {
class OverflowBubbleView;
-}
namespace test {
class OverflowBubbleViewTestAPI {
public:
- explicit OverflowBubbleViewTestAPI(internal::OverflowBubbleView* bubble_view);
+ explicit OverflowBubbleViewTestAPI(OverflowBubbleView* bubble_view);
~OverflowBubbleViewTestAPI();
// Returns the total width of items included in ShelfView.
@@ -32,7 +29,7 @@ class OverflowBubbleViewTestAPI {
void ScrollByXOffset(int x_offset);
private:
- internal::OverflowBubbleView* bubble_view_;
+ OverflowBubbleView* bubble_view_;
DISALLOW_COPY_AND_ASSIGN(OverflowBubbleViewTestAPI);
};