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

Side by Side Diff: athena/extensions/chrome/app_list_controller_delegate_athena.h

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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 ATHENA_EXTENSIONS_CHROME_APP_LIST_CONTROLLER_DELEGATE_ATHENA_H_
6 #define ATHENA_EXTENSIONS_CHROME_APP_LIST_CONTROLLER_DELEGATE_ATHENA_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
12 namespace athena {
13
14 class AppListControllerDelegateAthena : public AppListControllerDelegate {
15 public:
16 AppListControllerDelegateAthena();
17 ~AppListControllerDelegateAthena() override;
18
19 private:
20 // AppListControllerDelegate overrides:
21 void DismissView() override;
22 gfx::NativeWindow GetAppListWindow() override;
23 gfx::Rect GetAppListBounds() override;
24 gfx::ImageSkia GetWindowIcon() override;
25 bool IsAppPinned(const std::string& extension_id) override;
26 void PinApp(const std::string& extension_id) override;
27 void UnpinApp(const std::string& extension_id) override;
28 Pinnable GetPinnable() override;
29 void OnShowChildDialog() override;
30 void OnCloseChildDialog() override;
31 bool CanDoCreateShortcutsFlow() override;
32 void DoCreateShortcutsFlow(Profile* profile,
33 const std::string& extension_id) override;
34 void CreateNewWindow(Profile* profile, bool incognito) override;
35 void OpenURL(Profile* profile,
36 const GURL& url,
37 ui::PageTransition transition,
38 WindowOpenDisposition disposition) override;
39 void ActivateApp(Profile* profile,
40 const extensions::Extension* extension,
41 AppListSource source,
42 int event_flags) override;
43 void LaunchApp(Profile* profile,
44 const extensions::Extension* extension,
45 AppListSource source,
46 int event_flags) override;
47 void ShowForProfileByPath(const base::FilePath& profile_path) override;
48 bool ShouldShowUserIcon() override;
49
50 DISALLOW_COPY_AND_ASSIGN(AppListControllerDelegateAthena);
51 };
52
53 } // namespace athena
54
55 #endif // ATHENA_EXTENSIONS_CHROME_APP_LIST_CONTROLLER_DELEGATE_ATHENA_H_
OLDNEW
« no previous file with comments | « athena/extensions/chrome/DEPS ('k') | athena/extensions/chrome/app_list_controller_delegate_athena.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698