| Index: ash/shell/launcher_delegate_impl.h
|
| diff --git a/ash/shell/launcher_delegate_impl.h b/ash/shell/launcher_delegate_impl.h
|
| index b6f76584b9d5827f8427ed16cfaf99b91654cb69..71c943dd8cbc9709a76ad1d54e825c0fe198b3d5 100644
|
| --- a/ash/shell/launcher_delegate_impl.h
|
| +++ b/ash/shell/launcher_delegate_impl.h
|
| @@ -6,7 +6,6 @@
|
| #define ASH_SHELL_LAUNCHER_DELEGATE_IMPL_H_
|
|
|
| #include "ash/launcher/launcher_delegate.h"
|
| -#include "ash/launcher/launcher_item_delegate.h"
|
| #include "base/compiler_specific.h"
|
|
|
| namespace aura {
|
| @@ -18,8 +17,7 @@ namespace shell {
|
|
|
| class WindowWatcher;
|
|
|
| -class LauncherDelegateImpl : public ash::LauncherDelegate,
|
| - public ash::LauncherItemDelegate {
|
| +class LauncherDelegateImpl : public ash::LauncherDelegate {
|
| public:
|
| explicit LauncherDelegateImpl(WindowWatcher* watcher);
|
| virtual ~LauncherDelegateImpl();
|
| @@ -37,19 +35,6 @@ class LauncherDelegateImpl : public ash::LauncherDelegate,
|
| virtual bool CanPin() const OVERRIDE;
|
| virtual void UnpinAppWithID(const std::string& app_id) OVERRIDE;
|
|
|
| - // LauncherItemDelegate overrides:
|
| - virtual void ItemSelected(const ash::LauncherItem& item,
|
| - const ui::Event& event) OVERRIDE;
|
| - virtual base::string16 GetTitle(const ash::LauncherItem& item) OVERRIDE;
|
| - virtual ui::MenuModel* CreateContextMenu(
|
| - const ash::LauncherItem& item,
|
| - aura::RootWindow* root) OVERRIDE;
|
| - virtual ash::LauncherMenuModel* CreateApplicationMenu(
|
| - const ash::LauncherItem&,
|
| - int event_flags) OVERRIDE;
|
| - virtual bool IsDraggable(const ash::LauncherItem& item) OVERRIDE;
|
| - virtual bool ShouldShowTooltip(const LauncherItem& item) OVERRIDE;
|
| -
|
| private:
|
| // Used to update Launcher. Owned by main.
|
| WindowWatcher* watcher_;
|
|
|