blob: aa7380206eb9b60e3303d38055cf0b9ea868b588 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Copyright (c) 2011 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.
#include "chrome/browser/ui/views/aura/chrome_shell_delegate.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/views/aura/app_list_window.h"
#include "chrome/browser/ui/views/aura/status_area_host_aura.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "grit/theme_resources.h"
#include "ui/aura/window.h"
#include "ui/aura_shell/launcher/launcher_types.h"
#include "ui/aura_shell/window_util.h"
// static
ChromeShellDelegate* ChromeShellDelegate::instance_ = NULL;
ChromeShellDelegate::ChromeShellDelegate() {
instance_ = this;
}
ChromeShellDelegate::~ChromeShellDelegate() {
if (instance_ == this)
instance_ = NULL;
}
StatusAreaView* ChromeShellDelegate::GetStatusArea() {
return status_area_host_->GetStatusArea();
}
// static
bool ChromeShellDelegate::ShouldCreateLauncherItemForBrowser(
Browser* browser,
aura_shell::LauncherItemType* type) {
if (browser->type() == Browser::TYPE_TABBED) {
*type = aura_shell::TYPE_TABBED;
return true;
}
if (browser->is_app()) {
*type = aura_shell::TYPE_APP;
return true;
}
return false;
}
void ChromeShellDelegate::CreateNewWindow() {
Browser* browser = Browser::Create(ProfileManager::GetDefaultProfile());
browser->AddSelectedTabWithURL(GURL(), content::PAGE_TRANSITION_START_PAGE);
browser->window()->Show();
}
views::Widget* ChromeShellDelegate::CreateStatusArea() {
status_area_host_.reset(new StatusAreaHostAura());
views::Widget* status_area_widget =
status_area_host_.get()->CreateStatusArea();
return status_area_widget;
}
void ChromeShellDelegate::RequestAppListWidget(
const gfx::Rect& bounds,
const SetWidgetCallback& callback) {
// AppListWindow deletes itself when closed.
new AppListWindow(bounds, callback);
}
void ChromeShellDelegate::LauncherItemClicked(
const aura_shell::LauncherItem& item) {
aura_shell::ActivateWindow(item.window);
}
bool ChromeShellDelegate::ConfigureLauncherItem(
aura_shell::LauncherItem* item) {
BrowserView* view = BrowserView::GetBrowserViewForNativeWindow(item->window);
return view &&
ShouldCreateLauncherItemForBrowser(view->browser(), &(item->type));
}
int ChromeShellDelegate::GetResourceIDForNewBrowserWindow() {
return IDR_PRODUCT_LOGO_32;
}
|