OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 namespace experimental.systemInfo.storage { | 5 namespace experimental.systemInfo.storage { |
6 | 6 |
7 enum StorageUnitType { | 7 enum StorageUnitType { |
8 // The storage has fixed media, e.g. hard disk or SSD. | 8 // The storage has fixed media, e.g. hard disk or SSD. |
9 fixed, | 9 fixed, |
10 // The storage is removable, e.g. USB flash drive. | 10 // The storage is removable, e.g. USB flash drive. |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 // Fired when the storage device available capacity is changed. | 43 // Fired when the storage device available capacity is changed. |
44 // |info|: The changed information for the specified storage unit. | 44 // |info|: The changed information for the specified storage unit. |
45 static void onAvailableCapacityChanged(StorageChangeInfo info); | 45 static void onAvailableCapacityChanged(StorageChangeInfo info); |
46 | 46 |
47 // Fired when a new removable storage is attached to the system. | 47 // Fired when a new removable storage is attached to the system. |
48 static void onAttached(StorageUnitInfo info); | 48 static void onAttached(StorageUnitInfo info); |
49 | 49 |
50 // Fired when a removable storage is detached from the system. | 50 // Fired when a removable storage is detached from the system. |
51 static void onDetached(DOMString id); | 51 static void onDetached(DOMString id); |
52 }; | 52 }; |
53 | 53 |
54 }; | 54 }; |
55 | 55 |
OLD | NEW |