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

Unified Diff: third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.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/DeprecatedStorageQuota.h
diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.h b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.h
index b19c2aac1f2f81471bc398a5a1e96ad67c2b9c85..71aa9980f69228b6a75701dff6c949c420f635e8 100644
--- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.h
+++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.h
@@ -36,7 +36,7 @@
namespace blink {
-class ExecutionContext;
+class ScriptState;
class StorageErrorCallback;
class StorageQuotaCallback;
class StorageUsageCallback;
@@ -56,11 +56,11 @@ class DeprecatedStorageQuota final
return new DeprecatedStorageQuota(type);
}
- void queryUsageAndQuota(ExecutionContext*,
+ void queryUsageAndQuota(ScriptState*,
StorageUsageCallback*,
StorageErrorCallback*);
- void requestQuota(ExecutionContext*,
+ void requestQuota(ScriptState*,
unsigned long long newQuotaInBytes,
StorageQuotaCallback*,
StorageErrorCallback*);

Powered by Google App Engine
This is Rietveld 408576698