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

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

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 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/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

Powered by Google App Engine
This is Rietveld 408576698