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

Unified Diff: Source/modules/quota/StorageQuota.idl

Issue 273683006: ScriptPromise should understand the ScriptState from which the ScriptPromise is generated (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/quota/StorageQuota.idl
diff --git a/Source/modules/quota/StorageQuota.idl b/Source/modules/quota/StorageQuota.idl
index 20c0cbc5e7178a824aac8f93463ed7669bc18c4c..f6e5eb148211395182e88d4ab4ceb7bfe4167ad2 100644
--- a/Source/modules/quota/StorageQuota.idl
+++ b/Source/modules/quota/StorageQuota.idl
@@ -40,5 +40,5 @@ enum StorageType {
] interface StorageQuota {
readonly attribute StorageType[] supportedTypes;
[CallWith=ExecutionContext] Promise queryInfo(StorageType type);
- [CallWith=ExecutionContext] Promise requestPersistentQuota([Clamp] unsigned long long newQuota);
+ [CallWith=ScriptState] Promise requestPersistentQuota([Clamp] unsigned long long newQuota);
};

Powered by Google App Engine
This is Rietveld 408576698