| Index: components/arc/arc_service_manager.cc
|
| diff --git a/components/arc/arc_service_manager.cc b/components/arc/arc_service_manager.cc
|
| index 7666577c38a165de5958d4a256fd5ade7395d573..48de389a758f3c969ed72d21adc7b10c176d22c7 100644
|
| --- a/components/arc/arc_service_manager.cc
|
| +++ b/components/arc/arc_service_manager.cc
|
| @@ -24,7 +24,6 @@
|
| #include "components/arc/power/arc_power_bridge.h"
|
| #include "components/arc/storage_manager/arc_storage_manager.h"
|
| #include "components/arc/user_data/arc_user_data_service.h"
|
| -#include "components/arc/window_manager/arc_window_manager_bridge.h"
|
| #include "components/prefs/pref_member.h"
|
| #include "ui/arc/notification/arc_notification_manager.h"
|
|
|
| @@ -108,17 +107,6 @@ void ArcServiceManager::OnPrimaryUserProfilePrepared(
|
| new ArcNotificationManager(arc_bridge_service(), account_id)));
|
| }
|
|
|
| -void ArcServiceManager::OnAshStarted() {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - // We might come here multiple times. As such we should only do this once.
|
| - if (on_ash_started_called_)
|
| - return;
|
| -
|
| - on_ash_started_called_ = true;
|
| - AddService(
|
| - base::WrapUnique(new ArcWindowManagerBridge(arc_bridge_service())));
|
| -}
|
| -
|
| void ArcServiceManager::Shutdown() {
|
| icon_loader_ = nullptr;
|
| activity_resolver_ = nullptr;
|
|
|