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

Unified Diff: third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h

Issue 2410403002: Remove the experimental navigator.storageQuota API (Closed)
Patch Set: Rebased 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
diff --git a/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h b/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
index d19b0e1303cd0090e1ebdec8875da835cc39611b..56422ae7eec15b89066cafe5cc5ea54d462002e5 100644
--- a/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
+++ b/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.h
@@ -40,7 +40,6 @@ namespace blink {
class Navigator;
class StorageManager;
-class StorageQuota;
class NavigatorStorageQuota final
: public GarbageCollected<NavigatorStorageQuota>,
@@ -49,12 +48,10 @@ class NavigatorStorageQuota final
public:
static NavigatorStorageQuota& from(Navigator&);
- static StorageQuota* storageQuota(Navigator&);
static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&);
static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&);
static StorageManager* storage(Navigator&);
- StorageQuota* storageQuota() const;
DeprecatedStorageQuota* webkitTemporaryStorage() const;
DeprecatedStorageQuota* webkitPersistentStorage() const;
StorageManager* storage() const;
@@ -65,7 +62,6 @@ class NavigatorStorageQuota final
explicit NavigatorStorageQuota(Navigator&);
static const char* supplementName();
- mutable Member<StorageQuota> m_storageQuota;
mutable Member<DeprecatedStorageQuota> m_temporaryStorage;
mutable Member<DeprecatedStorageQuota> m_persistentStorage;
mutable Member<StorageManager> m_storageManager;
« no previous file with comments | « third_party/WebKit/Source/modules/quota/BUILD.gn ('k') | third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698