chrome_browser_main_extra_parts_ash.cc revision 868fa2fe829687343ffae624259930155e16dbd8
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 "chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h"
6
7#include "ash/session_state_delegate.h"
8#include "ash/shell.h"
9#include "base/command_line.h"
10#include "base/lazy_instance.h"
11#include "chrome/browser/chrome_browser_main.h"
12#include "chrome/browser/toolkit_extra_parts.h"
13#include "chrome/browser/ui/ash/ash_init.h"
14#include "chrome/browser/ui/ash/ash_util.h"
15#include "chrome/browser/ui/views/ash/tab_scrubber.h"
16#include "chrome/common/chrome_switches.h"
17#include "ui/aura/env.h"
18#include "ui/gfx/screen.h"
19#include "ui/gfx/screen_type_delegate.h"
20#include "ui/keyboard/keyboard.h"
21#include "ui/keyboard/keyboard_util.h"
22#include "ui/views/widget/desktop_aura/desktop_screen.h"
23
24#if defined(FILE_MANAGER_EXTENSION)
25#include "chrome/browser/ui/views/select_file_dialog_extension.h"
26#include "chrome/browser/ui/views/select_file_dialog_extension_factory.h"
27#endif
28
29#if !defined(OS_CHROMEOS)
30#include "ui/shell_dialogs/select_file_dialog.h"
31#include "ui/shell_dialogs/shell_dialogs_delegate.h"
32#endif
33
34#if !defined(OS_CHROMEOS)
35class ScreenTypeDelegateWin : public gfx::ScreenTypeDelegate {
36 public:
37  ScreenTypeDelegateWin() {}
38  virtual gfx::ScreenType GetScreenTypeForNativeView(
39      gfx::NativeView view) OVERRIDE {
40    return chrome::IsNativeViewInAsh(view) ?
41        gfx::SCREEN_TYPE_ALTERNATE :
42        gfx::SCREEN_TYPE_NATIVE;
43  }
44 private:
45  DISALLOW_COPY_AND_ASSIGN(ScreenTypeDelegateWin);
46};
47
48class ShellDialogsDelegateWin : public ui::ShellDialogsDelegate {
49 public:
50  ShellDialogsDelegateWin() {}
51  virtual bool IsWindowInMetro(gfx::NativeWindow window) OVERRIDE {
52    return chrome::IsNativeViewInAsh(window);
53  }
54 private:
55  DISALLOW_COPY_AND_ASSIGN(ShellDialogsDelegateWin);
56};
57
58base::LazyInstance<ShellDialogsDelegateWin> g_shell_dialogs_delegate;
59
60#endif
61
62ChromeBrowserMainExtraPartsAsh::ChromeBrowserMainExtraPartsAsh() {
63}
64
65ChromeBrowserMainExtraPartsAsh::~ChromeBrowserMainExtraPartsAsh() {
66}
67
68void ChromeBrowserMainExtraPartsAsh::PreProfileInit() {
69  if (chrome::ShouldOpenAshOnStartup()) {
70    chrome::OpenAsh();
71  } else {
72#if !defined(OS_CHROMEOS)
73    gfx::Screen::SetScreenTypeDelegate(new ScreenTypeDelegateWin);
74    ui::SelectFileDialog::SetShellDialogsDelegate(
75        &g_shell_dialogs_delegate.Get());
76#endif
77  }
78#if defined(OS_CHROMEOS)
79  // For OS_CHROMEOS, virtual keyboard needs to be initialized before profile
80  // initialized. Otherwise, virtual keyboard extension will not load at login
81  // screen.
82  if (keyboard::IsKeyboardEnabled())
83    keyboard::InitializeKeyboard();
84#endif
85
86#if defined(FILE_MANAGER_EXTENSION)
87  ui::SelectFileDialog::SetFactory(new SelectFileDialogExtensionFactory);
88#endif
89}
90
91void ChromeBrowserMainExtraPartsAsh::PostProfileInit() {
92  // Initialize TabScrubber after the Ash Shell has been initialized.
93  if (ash::Shell::HasInstance() &&
94      !CommandLine::ForCurrentProcess()->HasSwitch(
95          switches::kAshDisableTabScrubbing)) {
96    TabScrubber::GetInstance();
97  }
98}
99
100void ChromeBrowserMainExtraPartsAsh::PostMainMessageLoopRun() {
101  chrome::CloseAsh();
102}
103
104namespace chrome {
105
106void AddAshToolkitExtraParts(ChromeBrowserMainParts* main_parts) {
107  main_parts->AddParts(new ChromeBrowserMainExtraPartsAsh());
108}
109
110}  // namespace chrome
111