app_list_controller_ash.h revision 1e9bf3e0803691d0a228da41fc608347b6db4340
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_
6#define CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_
7
8#include "base/basictypes.h"
9#include "base/compiler_specific.h"
10#include "chrome/browser/ui/app_list/app_list_controller_delegate.h"
11#include "chrome/browser/ui/ash/launcher/chrome_launcher_types.h"
12
13class AppListControllerDelegateAsh : public AppListControllerDelegate {
14 public:
15  AppListControllerDelegateAsh();
16  virtual ~AppListControllerDelegateAsh();
17
18 private:
19  // AppListControllerDelegate overrides:
20  virtual void DismissView() OVERRIDE;
21  virtual gfx::NativeWindow GetAppListWindow() OVERRIDE;
22  virtual gfx::ImageSkia GetWindowIcon() OVERRIDE;
23  virtual bool IsAppPinned(const std::string& extension_id) OVERRIDE;
24  virtual void PinApp(const std::string& extension_id) OVERRIDE;
25  virtual void UnpinApp(const std::string& extension_id) OVERRIDE;
26  virtual Pinnable GetPinnable() OVERRIDE;
27  virtual bool CanDoCreateShortcutsFlow() OVERRIDE;
28  virtual void DoCreateShortcutsFlow(Profile* profile,
29                                     const std::string& extension_id) OVERRIDE;
30  virtual void CreateNewWindow(Profile* profile, bool incognito) OVERRIDE;
31  virtual void ActivateApp(Profile* profile,
32                           const extensions::Extension* extension,
33                           AppListSource source,
34                           int event_flags) OVERRIDE;
35  virtual void LaunchApp(Profile* profile,
36                         const extensions::Extension* extension,
37                         AppListSource source,
38                         int event_flags) OVERRIDE;
39  virtual void ShowForProfileByPath(
40      const base::FilePath& profile_path) OVERRIDE;
41  virtual bool ShouldShowUserIcon() OVERRIDE;
42
43  ash::LaunchSource AppListSourceToLaunchSource(AppListSource source);
44
45  DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAsh);
46};
47
48#endif  // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_ASH_H_
49