Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: chrome/common/extensions/api/experimental_system_info_storage.idl

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revisions, Offline/Online Access (bypassed-hooks) Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // Unknow storage type. 8 // Unknow storage type.
9 unknown, 9 unknown,
10 // Hard disk. 10 // Hard disk.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 // Fired when the storage device available capacity is changed. 44 // Fired when the storage device available capacity is changed.
45 // |info|: The changed information for the specified storage unit. 45 // |info|: The changed information for the specified storage unit.
46 static void onAvailableCapacityChanged(StorageChangeInfo info); 46 static void onAvailableCapacityChanged(StorageChangeInfo info);
47 47
48 // Fired when a new removable storage is attached to the system. 48 // Fired when a new removable storage is attached to the system.
49 static void onAttached(StorageUnitInfo info); 49 static void onAttached(StorageUnitInfo info);
50 50
51 // Fired when a removable storage is detached from the system. 51 // Fired when a removable storage is detached from the system.
52 static void onDetached(DOMString id); 52 static void onDetached(DOMString id);
53 }; 53 };
54 54
55 }; 55 };
56 56
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698