| Index: ash/system/overview/overview_button_tray.h
|
| diff --git a/ash/system/overview/overview_button_tray.h b/ash/system/overview/overview_button_tray.h
|
| index 9007f0a73040c77290adf7ac98cb9551c7d8031d..d988626f7b5979b43b5ccfc77c6d9b9c340d1604 100644
|
| --- a/ash/system/overview/overview_button_tray.h
|
| +++ b/ash/system/overview/overview_button_tray.h
|
| @@ -20,24 +20,24 @@ namespace ash {
|
| // This hosts a ShellObserver that listens for the activation of Maximize Mode
|
| // This tray will only be visible while in this state. This tray does not
|
| // provide any bubble view windows.
|
| -class ASH_EXPORT OverviewButtonTray : public internal::TrayBackgroundView,
|
| +class ASH_EXPORT OverviewButtonTray : public TrayBackgroundView,
|
| public ShellObserver {
|
| public:
|
| - explicit OverviewButtonTray(internal::StatusAreaWidget* status_area_widget);
|
| + explicit OverviewButtonTray(StatusAreaWidget* status_area_widget);
|
| virtual ~OverviewButtonTray();
|
|
|
| // Updates the tray's visibility based on the LoginStatus and the current
|
| // state of MaximizeMode
|
| virtual void UpdateAfterLoginStatusChange(user::LoginStatus status);
|
|
|
| - // internal::ActionableView:
|
| + // ActionableView:
|
| virtual bool PerformAction(const ui::Event& event) OVERRIDE;
|
|
|
| // ShellObserver:
|
| virtual void OnMaximizeModeStarted() OVERRIDE;
|
| virtual void OnMaximizeModeEnded() OVERRIDE;
|
|
|
| - // internal::TrayBackgroundView:
|
| + // TrayBackgroundView:
|
| virtual bool ClickedOutsideBubble() OVERRIDE;
|
| virtual base::string16 GetAccessibleNameForTray() OVERRIDE;
|
| virtual void HideBubbleWithView(
|
|
|