OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VolumeManager
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/file_manager/file_manager/background/js/
volume_manager.js
429
*
VolumeManager
is responsible for tracking list of mounted volumes.
434
function
VolumeManager
() {
456
// The status should be merged into
VolumeManager
.
472
VolumeManager
.prototype.onDriveConnectionStatusChanged_ = function() {
483
VolumeManager
.prototype.getDriveConnectionState = function() {
488
*
VolumeManager
extends cr.EventTarget.
490
VolumeManager
.prototype.__proto__ = cr.EventTarget.prototype;
496
VolumeManager
.TIMEOUT = 15 * 60 * 1000;
503
VolumeManager
.getInstanceQueue_ = new AsyncUtil.Queue();
506
* The singleton instance of
VolumeManager
. Initialized by the first invocatio
[
all
...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager.h
118
class
VolumeManager
: public KeyedService,
124
VolumeManager
(
130
virtual ~
VolumeManager
();
133
static
VolumeManager
* Get(content::BrowserContext* context);
227
base::WeakPtrFactory<
VolumeManager
> weak_ptr_factory_;
228
DISALLOW_COPY_AND_ASSIGN(
VolumeManager
);
volume_manager.cc
229
VolumeManager
::
VolumeManager
(
244
VolumeManager
::~
VolumeManager
() {
247
VolumeManager
*
VolumeManager
::Get(content::BrowserContext* context) {
251
void
VolumeManager
::Initialize() {
292
base::Bind(&
VolumeManager
::OnDiskMountManagerRefreshed,
314
base::Bind(&
VolumeManager
::OnExternalStorageDisabledChanged,
320
base::Bind(&
VolumeManager
::OnStorageMonitorInitialized
[
all
...]
Completed in 265 milliseconds