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

Unified Diff: Source/modules/indexeddb/IDBRequest.h

Issue 236783002: Pass NewScriptState to idbAnyToScriptValue() and idbKeyToScriptValue() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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
« no previous file with comments | « Source/modules/indexeddb/IDBObjectStore.idl ('k') | Source/modules/indexeddb/IDBRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBRequest.h
diff --git a/Source/modules/indexeddb/IDBRequest.h b/Source/modules/indexeddb/IDBRequest.h
index dcc3bb1811d53cabeb76c5da3f087b7ca66fea90..a431f3a72092911dc12fb11f28943789fabb865b 100644
--- a/Source/modules/indexeddb/IDBRequest.h
+++ b/Source/modules/indexeddb/IDBRequest.h
@@ -67,9 +67,9 @@ public:
static PassRefPtr<IDBRequest> create(ExecutionContext*, PassRefPtr<IDBAny> source, IDBTransaction*);
virtual ~IDBRequest();
- ScriptValue result(ExceptionState&);
+ ScriptValue result(NewScriptState*, ExceptionState&);
PassRefPtrWillBeRawPtr<DOMError> error(ExceptionState&) const;
- ScriptValue source(ExecutionContext*) const;
+ ScriptValue source(NewScriptState*) const;
PassRefPtr<IDBTransaction> transaction() const { return m_transaction; }
bool isResultDirty() const { return m_resultDirty; }
« no previous file with comments | « Source/modules/indexeddb/IDBObjectStore.idl ('k') | Source/modules/indexeddb/IDBRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698