Searched refs:VolumeManager (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dvolume_manager_factory.cc19 VolumeManager* VolumeManagerFactory::Get(content::BrowserContext* context) {
20 return static_cast<VolumeManager*>(
44 VolumeManager* instance = new VolumeManager(
H A Dvolume_manager_factory.h19 class VolumeManager;
21 // Factory to create VolumeManager.
24 // Returns VolumeManager instance.
25 static VolumeManager* Get(content::BrowserContext* context);
H A Dvolume_manager.cc142 VolumeManager::VolumeManager( function in class:file_manager::VolumeManager
155 VolumeManager::~VolumeManager() {
158 VolumeManager* VolumeManager::Get(content::BrowserContext* context) {
162 void VolumeManager::Initialize() {
209 base::Bind(&VolumeManager::OnExternalStorageDisabledChanged,
213 void VolumeManager::Shutdown() {
221 void VolumeManager
[all...]
H A Dvolume_manager.h95 class VolumeManager : public BrowserContextKeyedService, class in namespace:file_manager
99 VolumeManager(Profile* profile,
103 virtual ~VolumeManager();
106 static VolumeManager* Get(content::BrowserContext* context);
159 DISALLOW_COPY_AND_ASSIGN(VolumeManager);
H A Dvolume_manager_unittest.cc149 volume_manager_.reset(new VolumeManager(profile_.get(),
159 scoped_ptr<VolumeManager> volume_manager_;
587 // When "format" is successfully done, VolumeManager requests to mount it.
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
H A Dvolume_manager.js323 * VolumeManager is responsible for tracking list of mounted volumes.
328 function VolumeManager() { class
343 // The status should be merged into VolumeManager.
359 VolumeManager.prototype.onDriveConnectionStatusChanged_ = function() {
370 VolumeManager.prototype.getDriveConnectionState = function() {
375 * VolumeManager extends cr.EventTarget.
377 VolumeManager.prototype.__proto__ = cr.EventTarget.prototype;
383 VolumeManager.TIMEOUT = 15 * 60 * 1000;
390 VolumeManager.getInstanceQueue_ = new AsyncUtil.Queue();
393 * The singleton instance of VolumeManager
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_mount.cc139 file_manager::VolumeManager::Get(GetProfile())->GetVolumeInfoList();
H A Dprivate_api_file_system.cc507 using file_manager::VolumeManager;
509 VolumeManager* volume_manager = VolumeManager::Get(GetProfile());
H A Devent_router.cc301 VolumeManager* volume_manager = VolumeManager::Get(profile_);
318 // VolumeManager's construction triggers DriveIntegrationService's
319 // construction, so it is necessary to call VolumeManager's Get before
321 VolumeManager* volume_manager = VolumeManager::Get(profile_);
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
H A Dvolume_manager_wrapper.js6 * Thin wrapper for VolumeManager. This should be an interface proxy to talk
7 * to VolumeManager. This class also filters Drive related data/events if
34 // Start initialize the VolumeManager.
49 this.backgroundPage_.VolumeManager.getInstance(function(volumeManager) {
71 * Called when the VolumeManager gets ready for post initialization.
72 * @param {VolumeManager} volumeManager The initialized VolumeManager instance.
81 // Subscribe to VolumeManager.
130 * Called on events sent from VolumeManager. This has responsibility to
132 * @param {Event} event Event object sent from VolumeManager
[all...]

Completed in 801 milliseconds