Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: ash/test/shelf_view_test_api.h

Issue 224113005: Eliminate ash::internal namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/test/shelf_test_api.cc ('k') | ash/test/shelf_view_test_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/shelf_view_test_api.h
diff --git a/ash/test/shelf_view_test_api.h b/ash/test/shelf_view_test_api.h
index cff21f491c7973d111ad7f4116097997340c3806..71853fdeebd1a3e453d25d5aa0d4430d8924dedd 100644
--- a/ash/test/shelf_view_test_api.h
+++ b/ash/test/shelf_view_test_api.h
@@ -14,28 +14,24 @@ class Size;
}
namespace ash {
-
-class ShelfDelegate;
-
-namespace internal {
class OverflowBubble;
class ShelfButton;
+class ShelfDelegate;
class ShelfView;
-}
namespace test {
// Use the api in this class to test ShelfView.
class ShelfViewTestAPI {
public:
- explicit ShelfViewTestAPI(internal::ShelfView* shelf_view);
+ explicit ShelfViewTestAPI(ShelfView* shelf_view);
~ShelfViewTestAPI();
// Number of icons displayed.
int GetButtonCount();
// Retrieve the button at |index|.
- internal::ShelfButton* GetButton(int index);
+ ShelfButton* GetButton(int index);
// First visible button index.
int GetFirstVisibleIndex();
@@ -60,10 +56,10 @@ class ShelfViewTestAPI {
void RunMessageLoopUntilAnimationsDone();
// An accessor for |shelf_view|.
- internal::ShelfView* shelf_view() { return shelf_view_; }
+ ShelfView* shelf_view() { return shelf_view_; }
// An accessor for overflow bubble.
- internal::OverflowBubble* overflow_bubble();
+ OverflowBubble* overflow_bubble();
// Returns the preferred size of |shelf_view_|.
gfx::Size GetPreferredSize();
@@ -90,7 +86,7 @@ class ShelfViewTestAPI {
bool DraggedItemFromOverflowToShelf();
private:
- internal::ShelfView* shelf_view_;
+ ShelfView* shelf_view_;
DISALLOW_COPY_AND_ASSIGN(ShelfViewTestAPI);
};
« no previous file with comments | « ash/test/shelf_test_api.cc ('k') | ash/test/shelf_view_test_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698