Index: third_party/WebKit/Source/modules/indexeddb/IDBRequest.h |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h |
index c294a6692317708f0201662968419227582e6e85..d5b3134777e8215272d3d5018d3a57cf9d434d76 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h |
@@ -65,7 +65,7 @@ public: |
~IDBRequest() override; |
DECLARE_VIRTUAL_TRACE(); |
- ScriptState* scriptState() { return m_scriptState.get(); } |
+ ScriptState* getScriptState() { return m_scriptState.get(); } |
ScriptValue result(ExceptionState&); |
DOMException* error(ExceptionState&) const; |
ScriptValue source() const; |
@@ -115,7 +115,7 @@ public: |
// EventTarget |
const AtomicString& interfaceName() const override; |
- ExecutionContext* executionContext() const final; |
+ ExecutionContext* getExecutionContext() const final; |
void uncaughtExceptionInEventHandler() final; |
// Called by a version change transaction that has finished to set this |