| Index: Source/modules/indexeddb/IDBKeyRange.h
|
| diff --git a/Source/modules/indexeddb/IDBKeyRange.h b/Source/modules/indexeddb/IDBKeyRange.h
|
| index 59305176214a65695724fa1cb4d37572ed6a0d42..cf841f9779d1948a6540ad827c5b4929725976c8 100644
|
| --- a/Source/modules/indexeddb/IDBKeyRange.h
|
| +++ b/Source/modules/indexeddb/IDBKeyRange.h
|
| @@ -60,8 +60,8 @@ public:
|
| PassRefPtr<IDBKey> lower() const { return m_lower; }
|
| PassRefPtr<IDBKey> upper() const { return m_upper; }
|
|
|
| - ScriptValue lowerValue(ExecutionContext*) const;
|
| - ScriptValue upperValue(ExecutionContext*) const;
|
| + ScriptValue lowerValue(NewScriptState*) const;
|
| + ScriptValue upperValue(NewScriptState*) const;
|
| bool lowerOpen() const { return m_lowerType == LowerBoundOpen; }
|
| bool upperOpen() const { return m_upperType == UpperBoundOpen; }
|
|
|
|
|