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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/storage/interfaces.idl

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 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
(Empty)
1 [SecureContext,
2 NoInterfaceObject,
3 Exposed=(Window,Worker)]
4 interface NavigatorStorage {
5 readonly attribute StorageManager storage;
6 };
7 Navigator implements NavigatorStorage;
8 WorkerNavigator implements NavigatorStorage;
9
10 [SecureContext,
11 Exposed=(Window,Worker)]
12 interface StorageManager {
13 Promise<boolean> persisted();
14 [Exposed=Window] Promise<boolean> persist();
15
16 Promise<StorageEstimate> estimate();
17 };
18
19 dictionary StorageEstimate {
20 unsigned long long usage;
21 unsigned long long quota;
22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698