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

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

Issue 2656343002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Few more Created 3 years, 11 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/DeprecatedStorageInfo.h
diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.h b/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.h
index 14385cea51dc6b1a2412a9cf32b4b43bf0b3a11d..1bd9edd5ca3ee1a1249c2daf0749b1031eea30f6 100644
--- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.h
+++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.h
@@ -38,7 +38,7 @@
namespace blink {
-class ExecutionContext;
+class ScriptState;
class StorageErrorCallback;
class StorageQuotaCallback;
class StorageUsageCallback;
@@ -56,12 +56,12 @@ class DeprecatedStorageInfo final
static DeprecatedStorageInfo* create() { return new DeprecatedStorageInfo(); }
- void queryUsageAndQuota(ExecutionContext*,
+ void queryUsageAndQuota(ScriptState*,
int storageType,
StorageUsageCallback*,
StorageErrorCallback*);
- void requestQuota(ExecutionContext*,
+ void requestQuota(ScriptState*,
int storageType,
unsigned long long newQuotaInBytes,
StorageQuotaCallback*,

Powered by Google App Engine
This is Rietveld 408576698