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

Unified Diff: ash/shelf/shelf_widget.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/shelf/shelf_view_unittest.cc ('k') | ash/shelf/shelf_widget.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shelf/shelf_widget.h
diff --git a/ash/shelf/shelf_widget.h b/ash/shelf/shelf_widget.h
index d2ff8b43a71d85842358769bc2d7903ce483b46e..8a2ccc671fb4d2651a0553d7ba348bef0f42639a 100644
--- a/ash/shelf/shelf_widget.h
+++ b/ash/shelf/shelf_widget.h
@@ -17,23 +17,19 @@ class Window;
}
namespace ash {
-class Shelf;
-
-namespace internal {
class FocusCycler;
-class StatusAreaWidget;
+class Shelf;
class ShelfLayoutManager;
+class StatusAreaWidget;
class WorkspaceController;
-}
class ASH_EXPORT ShelfWidget : public views::Widget,
public views::WidgetObserver,
public ShelfLayoutManagerObserver {
public:
- ShelfWidget(
- aura::Window* shelf_container,
- aura::Window* status_container,
- internal::WorkspaceController* workspace_controller);
+ ShelfWidget(aura::Window* shelf_container,
+ aura::Window* status_container,
+ WorkspaceController* workspace_controller);
virtual ~ShelfWidget();
// Returns if shelf alignment option is enabled, and the user is able
@@ -53,13 +49,9 @@ class ASH_EXPORT ShelfWidget : public views::Widget,
void SetDimsShelf(bool dimming);
bool GetDimsShelf() const;
- internal::ShelfLayoutManager* shelf_layout_manager() {
- return shelf_layout_manager_;
- }
+ ShelfLayoutManager* shelf_layout_manager() { return shelf_layout_manager_; }
Shelf* shelf() const { return shelf_.get(); }
- internal::StatusAreaWidget* status_area_widget() const {
- return status_area_widget_;
- }
+ StatusAreaWidget* status_area_widget() const { return status_area_widget_; }
void CreateShelf();
@@ -68,8 +60,8 @@ class ASH_EXPORT ShelfWidget : public views::Widget,
bool IsShelfVisible() const;
// Sets the focus cycler. Also adds the shelf to the cycle.
- void SetFocusCycler(internal::FocusCycler* focus_cycler);
- internal::FocusCycler* GetFocusCycler();
+ void SetFocusCycler(FocusCycler* focus_cycler);
+ FocusCycler* GetFocusCycler();
// Called by the activation delegate, before the shelf is activated
// when no other windows are visible.
@@ -104,14 +96,14 @@ class ASH_EXPORT ShelfWidget : public views::Widget,
private:
class DelegateView;
- internal::ShelfLayoutManager* shelf_layout_manager_;
+ ShelfLayoutManager* shelf_layout_manager_;
scoped_ptr<Shelf> shelf_;
- internal::StatusAreaWidget* status_area_widget_;
+ StatusAreaWidget* status_area_widget_;
// delegate_view_ is attached to window_container_ and is cleaned up
// during CloseChildWindows of the associated RootWindowController.
DelegateView* delegate_view_;
- internal::BackgroundAnimator background_animator_;
+ BackgroundAnimator background_animator_;
bool activating_as_fallback_;
aura::Window* window_container_;
};
« no previous file with comments | « ash/shelf/shelf_view_unittest.cc ('k') | ash/shelf/shelf_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698