Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
EventFactory.in should be named EventNames.in
https://bugs.webkit.org/show_bug.cgi?id=79727 Reviewed by Kentaro Hara. Originally EventFactory.in was just used to generate EventFactory.cpp, but now we're able to generate a bunch of other Event-related code from this "in" file. In writing some documentation about how to use these mechanisms, the name EventFactory.in didn't seem like the right name. This patch renames EventFactory.in to EventNames.in, which more accurately describes the role of this file (and matches the naming convention of HTMLTagNames.in). * CMakeLists.txt: * DerivedSources.make: * DerivedSources.pri: * GNUmakefile.am: * WebCore.gyp/WebCore.gyp: * WebCore.gyp/scripts/action_makenames.py: (main): * WebCore.xcodeproj/project.pbxproj: * dom/EventNames.in: Copied from Source/WebCore/dom/EventFactory.in. * dom/EventFactory.in: Removed. Canonical link: https://commits.webkit.org/96830@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@109068 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
46 additions
and 18 deletions.
- +1 −1 Source/WebCore/CMakeLists.txt
- +28 −0 Source/WebCore/ChangeLog
- +2 −2 Source/WebCore/DerivedSources.make
- +4 −4 Source/WebCore/DerivedSources.pri
- +3 −3 Source/WebCore/GNUmakefile.am
- +1 −1 Source/WebCore/WebCore.gyp/WebCore.gyp
- +2 −2 Source/WebCore/WebCore.gyp/scripts/action_makenames.py
- +5 −5 Source/WebCore/WebCore.xcodeproj/project.pbxproj
- 0 Source/WebCore/dom/{EventFactory.in → EventNames.in}
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -728,7 +728,7 @@ | ||
'action_name': 'EventFactory', | ||
'inputs': [ | ||
'../dom/make_event_factory.pl', | ||
'../dom/EventNames.in', | ||
], | ||
'outputs': [ | ||
'<(SHARED_INTERMEDIATE_DIR)/webkit/EventFactory.cpp', | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.