blob: 8bd55a42774394a93e2877778655657b197ddf3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_AURA_CHROME_SHELL_DELEGATE_H_
#define CHROME_BROWSER_UI_VIEWS_AURA_CHROME_SHELL_DELEGATE_H_
#pragma once
#include "ash/launcher/launcher_types.h"
#include "ash/shell_delegate.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
class Browser;
class StatusAreaHostAura;
class StatusAreaView;
namespace views {
class View;
}
class ChromeShellDelegate : public ash::ShellDelegate {
public:
ChromeShellDelegate();
virtual ~ChromeShellDelegate();
static ChromeShellDelegate* instance() { return instance_; }
StatusAreaHostAura* status_area_host_for_test() {
return status_area_host_.get();
}
StatusAreaView* GetStatusArea();
// Returns whether a launcher item should be created for |browser|. If an item
// should be created |type| is set to the launcher type to create.
static bool ShouldCreateLauncherItemForBrowser(
Browser* browser,
ash::LauncherItemType* type);
// ash::ShellDelegate overrides;
virtual void CreateNewWindow() OVERRIDE;
virtual views::Widget* CreateStatusArea() OVERRIDE;
virtual void Exit() OVERRIDE;
virtual void BuildAppListModel(ash::AppListModel* model) OVERRIDE;
virtual ash::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE;
virtual std::vector<aura::Window*> GetCycleWindowList(
CycleSource source,
CycleOrder order) const OVERRIDE;
virtual void LauncherItemClicked(
const ash::LauncherItem& item) OVERRIDE;
virtual bool ConfigureLauncherItem(ash::LauncherItem* item) OVERRIDE;
virtual int GetBrowserShortcutResourceId() OVERRIDE;
private:
static ChromeShellDelegate* instance_;
scoped_ptr<StatusAreaHostAura> status_area_host_;
DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate);
};
#endif // CHROME_BROWSER_UI_VIEWS_AURA_CHROME_SHELL_DELEGATE_H_
|