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

Unified Diff: third_party/WebKit/Source/core/events/EventTarget.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/core/events/EventTarget.h
diff --git a/third_party/WebKit/Source/core/events/EventTarget.h b/third_party/WebKit/Source/core/events/EventTarget.h
index 8c9e9e96b36acea69964697b9a0828717f4905f8..fa1cd9ffb90cb9fb7eb496a1072950f1029118aa 100644
--- a/third_party/WebKit/Source/core/events/EventTarget.h
+++ b/third_party/WebKit/Source/core/events/EventTarget.h
@@ -102,7 +102,7 @@ public:
// very strange compiler errors.
// - If you added an onfoo attribute, use DEFINE_ATTRIBUTE_EVENT_LISTENER(foo)
// in your class declaration.
-// - Override EventTarget::interfaceName() and executionContext(). The former
+// - Override EventTarget::interfaceName() and getExecutionContext(). The former
// will typically return EventTargetNames::YourClassName. The latter will
// return ActiveDOMObject::executionContext (if you are an ActiveDOMObject)
// or the document you're in.
@@ -123,7 +123,7 @@ public:
#endif
virtual const AtomicString& interfaceName() const = 0;
- virtual ExecutionContext* executionContext() const = 0;
+ virtual ExecutionContext* getExecutionContext() const = 0;
virtual Node* toNode();
virtual const LocalDOMWindow* toDOMWindow() const;
« no previous file with comments | « third_party/WebKit/Source/core/dom/SecurityContext.cpp ('k') | third_party/WebKit/Source/core/events/EventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698