OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" | 5 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "chrome/browser/chromeos/bluetooth/bluetooth_manager.h" | 12 #include "chrome/browser/chromeos/bluetooth/bluetooth_manager.h" |
13 #include "chrome/browser/chromeos/boot_times_loader.h" | 13 #include "chrome/browser/chromeos/boot_times_loader.h" |
14 #include "chrome/browser/chromeos/brightness_observer.h" | 14 #include "chrome/browser/chromeos/brightness_observer.h" |
15 #include "chrome/browser/chromeos/cros/cros_library.h" | 15 #include "chrome/browser/chromeos/cros/cros_library.h" |
16 #include "chrome/browser/chromeos/dbus/dbus_thread_manager.h" | 16 #include "chrome/browser/chromeos/dbus/dbus_thread_manager.h" |
17 #include "chrome/browser/chromeos/dbus/session_manager_client.h" | 17 #include "chrome/browser/chromeos/dbus/session_manager_client.h" |
18 #include "chrome/browser/chromeos/login/session_manager_observer.h" | 18 #include "chrome/browser/chromeos/login/session_manager_observer.h" |
19 #include "chrome/browser/chromeos/net/cros_network_change_notifier_factory.h" | 19 #include "chrome/browser/chromeos/net/cros_network_change_notifier_factory.h" |
20 #include "chrome/browser/chromeos/system/statistics_provider.h" | 20 #include "chrome/browser/chromeos/system/statistics_provider.h" |
21 #include "chrome/browser/defaults.h" | 21 #include "chrome/browser/defaults.h" |
22 #include "chrome/common/chrome_switches.h" | 22 #include "chrome/common/chrome_switches.h" |
23 #include "content/common/main_function_params.h" | 23 #include "content/public/common/main_function_params.h" |
24 #include "net/base/network_change_notifier.h" | 24 #include "net/base/network_change_notifier.h" |
25 | 25 |
26 #if defined(TOOLKIT_USES_GTK) | 26 #if defined(TOOLKIT_USES_GTK) |
27 #include <gtk/gtk.h> | 27 #include <gtk/gtk.h> |
28 #endif | 28 #endif |
29 | 29 |
30 class MessageLoopObserver : public MessageLoopForUI::Observer { | 30 class MessageLoopObserver : public MessageLoopForUI::Observer { |
31 #if defined(TOUCH_UI) || defined(USE_AURA) | 31 #if defined(TOUCH_UI) || defined(USE_AURA) |
32 virtual base::EventStatus WillProcessEvent( | 32 virtual base::EventStatus WillProcessEvent( |
33 const base::NativeEvent& event) OVERRIDE { | 33 const base::NativeEvent& event) OVERRIDE { |
(...skipping 30 matching lines...) Expand all Loading... |
64 | 64 |
65 virtual void DidProcessEvent(GdkEvent* event) { | 65 virtual void DidProcessEvent(GdkEvent* event) { |
66 } | 66 } |
67 #endif | 67 #endif |
68 }; | 68 }; |
69 | 69 |
70 static base::LazyInstance<MessageLoopObserver> g_message_loop_observer( | 70 static base::LazyInstance<MessageLoopObserver> g_message_loop_observer( |
71 base::LINKER_INITIALIZED); | 71 base::LINKER_INITIALIZED); |
72 | 72 |
73 ChromeBrowserMainPartsChromeos::ChromeBrowserMainPartsChromeos( | 73 ChromeBrowserMainPartsChromeos::ChromeBrowserMainPartsChromeos( |
74 const MainFunctionParams& parameters) | 74 const content::MainFunctionParams& parameters) |
75 : ChromeBrowserMainPartsLinux(parameters) { | 75 : ChromeBrowserMainPartsLinux(parameters) { |
76 } | 76 } |
77 | 77 |
78 ChromeBrowserMainPartsChromeos::~ChromeBrowserMainPartsChromeos() { | 78 ChromeBrowserMainPartsChromeos::~ChromeBrowserMainPartsChromeos() { |
79 chromeos::BluetoothManager::Shutdown(); | 79 chromeos::BluetoothManager::Shutdown(); |
80 | 80 |
81 // We should remove observers attached to D-Bus clients before | 81 // We should remove observers attached to D-Bus clients before |
82 // DBusThreadManager is shut down. | 82 // DBusThreadManager is shut down. |
83 if (session_manager_observer_.get()) { | 83 if (session_manager_observer_.get()) { |
84 chromeos::DBusThreadManager::Get()->GetSessionManagerClient()-> | 84 chromeos::DBusThreadManager::Get()->GetSessionManagerClient()-> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 // per signals sent from the session manager. | 152 // per signals sent from the session manager. |
153 session_manager_observer_.reset(new chromeos::SessionManagerObserver); | 153 session_manager_observer_.reset(new chromeos::SessionManagerObserver); |
154 chromeos::DBusThreadManager::Get()->GetSessionManagerClient()-> | 154 chromeos::DBusThreadManager::Get()->GetSessionManagerClient()-> |
155 AddObserver(session_manager_observer_.get()); | 155 AddObserver(session_manager_observer_.get()); |
156 | 156 |
157 // Initialize the Chrome OS bluetooth subsystem | 157 // Initialize the Chrome OS bluetooth subsystem |
158 if (parsed_command_line().HasSwitch(switches::kEnableBluetooth)) { | 158 if (parsed_command_line().HasSwitch(switches::kEnableBluetooth)) { |
159 chromeos::BluetoothManager::Initialize(); | 159 chromeos::BluetoothManager::Initialize(); |
160 } | 160 } |
161 } | 161 } |
OLD | NEW |