shell_browser_main_parts.cc revision a93a17c8d99d686bd4a1511e5504e5e6cc9fcadf
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#include "ash/shell/content_client/shell_browser_main_parts.h"
6
7#include "ash/ash_switches.h"
8#include "ash/desktop_background/desktop_background_controller.h"
9#include "ash/shell.h"
10#include "ash/shell/shell_delegate_impl.h"
11#include "ash/shell/window_watcher.h"
12#include "base/bind.h"
13#include "base/command_line.h"
14#include "base/i18n/icu_util.h"
15#include "base/message_loop.h"
16#include "base/strings/string_number_conversions.h"
17#include "base/threading/thread.h"
18#include "base/threading/thread_restrictions.h"
19#include "content/public/common/content_switches.h"
20#include "content/shell/shell_browser_context.h"
21#include "googleurl/src/gurl.h"
22#include "net/base/net_module.h"
23#include "ui/aura/client/stacking_client.h"
24#include "ui/aura/env.h"
25#include "ui/aura/root_window.h"
26#include "ui/aura/window.h"
27#include "ui/base/resource/resource_bundle.h"
28#include "ui/base/ui_base_paths.h"
29#include "ui/compositor/compositor.h"
30#include "ui/compositor/test/compositor_test_support.h"
31#include "ui/gfx/screen.h"
32#include "ui/message_center/message_center.h"
33#include "ui/views/focus/accelerator_handler.h"
34#include "ui/views/test/test_views_delegate.h"
35
36#if defined(USE_X11)
37#include "ui/base/touch/touch_factory_x11.h"
38#endif
39
40#if defined(OS_CHROMEOS)
41#include "chromeos/audio/cras_audio_handler.h"
42#include "chromeos/dbus/dbus_thread_manager.h"
43#endif
44
45namespace ash {
46namespace shell {
47void InitWindowTypeLauncher();
48
49namespace {
50
51class ShellViewsDelegate : public views::TestViewsDelegate {
52 public:
53  ShellViewsDelegate() {}
54  virtual ~ShellViewsDelegate() {}
55
56  // Overridden from views::TestViewsDelegate:
57  virtual views::NonClientFrameView* CreateDefaultNonClientFrameView(
58      views::Widget* widget) OVERRIDE {
59    return ash::Shell::GetInstance()->CreateDefaultNonClientFrameView(widget);
60  }
61  virtual bool UseTransparentWindows() const OVERRIDE {
62    // Ash uses transparent window frames.
63    return true;
64  }
65  virtual void OnBeforeWidgetInit(
66      views::Widget::InitParams* params,
67      views::internal::NativeWidgetDelegate* delegate) OVERRIDE {
68    if (params->native_widget)
69      return;
70
71    if (!params->parent && !params->context && params->top_level)
72      params->context = Shell::GetPrimaryRootWindow();
73  }
74
75 private:
76  DISALLOW_COPY_AND_ASSIGN(ShellViewsDelegate);
77};
78
79}  // namespace
80
81ShellBrowserMainParts::ShellBrowserMainParts(
82    const content::MainFunctionParams& parameters)
83    : BrowserMainParts(),
84      delegate_(NULL) {
85}
86
87ShellBrowserMainParts::~ShellBrowserMainParts() {
88}
89
90#if !defined(OS_MACOSX)
91void ShellBrowserMainParts::PreMainMessageLoopStart() {
92#if defined(USE_X11)
93  ui::TouchFactory::SetTouchDeviceListFromCommandLine();
94#endif
95}
96#endif
97
98void ShellBrowserMainParts::PostMainMessageLoopStart() {
99#if defined(OS_CHROMEOS)
100  chromeos::DBusThreadManager::Initialize();
101#endif
102}
103
104void ShellBrowserMainParts::PreMainMessageLoopRun() {
105  browser_context_.reset(new content::ShellBrowserContext(false));
106
107  // A ViewsDelegate is required.
108  if (!views::ViewsDelegate::views_delegate)
109    views::ViewsDelegate::views_delegate = new ShellViewsDelegate;
110
111  delegate_ = new ash::shell::ShellDelegateImpl;
112  // The global message center state must be initialized absent
113  // g_browser_process.
114  message_center::MessageCenter::Initialize();
115
116#if defined(OS_CHROMEOS)
117  if (ash::switches::UseNewAudioHandler()) {
118    // Create CrasAudioHandler for testing since g_browser_process
119    // is absent.
120    chromeos::CrasAudioHandler::InitializeForTesting();
121  }
122#endif
123
124  ash::Shell::CreateInstance(delegate_);
125  ash::Shell::GetInstance()->set_browser_context(browser_context_.get());
126
127  window_watcher_.reset(new ash::shell::WindowWatcher);
128  gfx::Screen* screen = Shell::GetInstance()->GetScreen();
129  screen->AddObserver(window_watcher_.get());
130  delegate_->SetWatcher(window_watcher_.get());
131
132  ash::shell::InitWindowTypeLauncher();
133
134  DesktopBackgroundController* controller =
135      Shell::GetInstance()->desktop_background_controller();
136  if (controller->GetAppropriateResolution() == WALLPAPER_RESOLUTION_LARGE)
137    controller->SetDefaultWallpaper(kDefaultLargeWallpaper);
138  else
139    controller->SetDefaultWallpaper(kDefaultSmallWallpaper);
140
141  ash::Shell::GetPrimaryRootWindow()->ShowRootWindow();
142}
143
144void ShellBrowserMainParts::PostMainMessageLoopRun() {
145  gfx::Screen* screen = Shell::GetInstance()->GetScreen();
146  screen->RemoveObserver(window_watcher_.get());
147
148  window_watcher_.reset();
149  delegate_->SetWatcher(NULL);
150  delegate_ = NULL;
151  ash::Shell::DeleteInstance();
152  // The global message center state must be shutdown absent
153  // g_browser_process.
154  message_center::MessageCenter::Shutdown();
155
156#if defined(OS_CHROMEOS)
157  if (ash::switches::UseNewAudioHandler())
158    chromeos::CrasAudioHandler::Shutdown();
159#endif
160
161  aura::Env::DeleteInstance();
162
163  // The keyboard may have created a WebContents. The WebContents is destroyed
164  // with the UI, and it needs the BrowserContext to be alive during its
165  // destruction. So destroy all of the UI elements before destroying the
166  // browser context.
167  browser_context_.reset();
168}
169
170bool ShellBrowserMainParts::MainMessageLoopRun(int* result_code) {
171  base::MessageLoopForUI::current()->Run();
172  return true;
173}
174
175}  // namespace shell
176}  // namespace ash
177