| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/file_manager/volume_manager_factory.h" | 5 #include "chrome/browser/chromeos/file_manager/volume_manager_factory.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | |
| 8 #include "base/bind.h" | 7 #include "base/bind.h" |
| 9 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 10 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 9 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
| 11 #include "chrome/browser/chromeos/file_manager/volume_manager.h" | 10 #include "chrome/browser/chromeos/file_manager/volume_manager.h" |
| 12 #include "chrome/browser/chromeos/file_system_provider/service_factory.h" | 11 #include "chrome/browser/chromeos/file_system_provider/service_factory.h" |
| 13 #include "chrome/browser/profiles/incognito_helpers.h" | 12 #include "chrome/browser/profiles/incognito_helpers.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chromeos/dbus/dbus_thread_manager.h" | 14 #include "chromeos/dbus/dbus_thread_manager.h" |
| 16 #include "chromeos/disks/disk_mount_manager.h" | 15 #include "chromeos/disks/disk_mount_manager.h" |
| 17 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 16 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "VolumeManagerFactory", | 60 "VolumeManagerFactory", |
| 62 BrowserContextDependencyManager::GetInstance()) { | 61 BrowserContextDependencyManager::GetInstance()) { |
| 63 DependsOn(drive::DriveIntegrationServiceFactory::GetInstance()); | 62 DependsOn(drive::DriveIntegrationServiceFactory::GetInstance()); |
| 64 DependsOn(chromeos::file_system_provider::ServiceFactory::GetInstance()); | 63 DependsOn(chromeos::file_system_provider::ServiceFactory::GetInstance()); |
| 65 } | 64 } |
| 66 | 65 |
| 67 VolumeManagerFactory::~VolumeManagerFactory() { | 66 VolumeManagerFactory::~VolumeManagerFactory() { |
| 68 } | 67 } |
| 69 | 68 |
| 70 } // namespace file_manager | 69 } // namespace file_manager |
| OLD | NEW |