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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.h

Issue 2610903002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: 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/indexeddb/IDBKeyRange.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.h b/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.h
index 70f5c89e4f07e79cad55a5144c4a7a34784682d1..982bcef76e8c349c77ebb2162404a79fabcd5aeb 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyRange.h
@@ -68,18 +68,18 @@ class MODULES_EXPORT IDBKeyRange final : public GarbageCollected<IDBKeyRange>,
bool lowerOpen() const { return m_lowerType == LowerBoundOpen; }
bool upperOpen() const { return m_upperType == UpperBoundOpen; }
- static IDBKeyRange* only(ExecutionContext*,
+ static IDBKeyRange* only(ScriptState*,
const ScriptValue& key,
ExceptionState&);
- static IDBKeyRange* lowerBound(ExecutionContext*,
+ static IDBKeyRange* lowerBound(ScriptState*,
const ScriptValue& bound,
bool open,
ExceptionState&);
- static IDBKeyRange* upperBound(ExecutionContext*,
+ static IDBKeyRange* upperBound(ScriptState*,
const ScriptValue& bound,
bool open,
ExceptionState&);
- static IDBKeyRange* bound(ExecutionContext*,
+ static IDBKeyRange* bound(ScriptState*,
const ScriptValue& lower,
const ScriptValue& upper,
bool lowerOpen,
@@ -88,7 +88,7 @@ class MODULES_EXPORT IDBKeyRange final : public GarbageCollected<IDBKeyRange>,
static IDBKeyRange* only(IDBKey* value, ExceptionState&);
- bool includes(ExecutionContext*, const ScriptValue& key, ExceptionState&);
+ bool includes(ScriptState*, const ScriptValue& key, ExceptionState&);
private:
IDBKeyRange(IDBKey* lower,

Powered by Google App Engine
This is Rietveld 408576698