gecko-dev/xpcom/build
Gabriele Svelto 5dc21d568c Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan
The inclusions were removed with the following very crude script and the
resulting breakage was fixed up by hand. The manual fixups did either
revert the changes done by the script, replace a generic header with a more
specific one or replace a header with a forward declaration.

find . -name "*.idl" | grep -v web-platform | grep -v third_party | while read path; do
    interfaces=$(grep "^\(class\|interface\).*:.*" "$path" | cut -d' ' -f2)
    if [ -n "$interfaces" ]; then
        if [[ "$interfaces" == *$'\n'* ]]; then
          regexp="\("
          for i in $interfaces; do regexp="$regexp$i\|"; done
          regexp="${regexp%%\\\|}\)"
        else
          regexp="$interfaces"
        fi
        interface=$(basename "$path")
        rg -l "#include.*${interface%%.idl}.h" . | while read path2; do
            hits=$(grep -v "#include.*${interface%%.idl}.h" "$path2" | grep -c "$regexp" )
            if [ $hits -eq 0 ]; then
                echo "Removing ${interface} from ${path2}"
                grep -v "#include.*${interface%%.idl}.h" "$path2" > "$path2".tmp
                mv -f "$path2".tmp "$path2"
            fi
        done
    fi
done

Differential Revision: https://phabricator.services.mozilla.com/D55444

--HG--
extra : moz-landing-system : lando
2019-12-06 09:17:57 +00:00
..
BinaryPath.h
FileLocation.cpp
FileLocation.h
GeckoProcessTypes.h Bug 1470591 - Part 1: Add a new process type for ForkServer. r=gsvelto 2019-12-05 00:03:29 +00:00
IOInterposer.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
IOInterposer.h
IOInterposerPrivate.h
LateWriteChecks.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
LateWriteChecks.h
MainThreadIOLogger.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
MainThreadIOLogger.h
NSPRInterposer.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
NSPRInterposer.h
Omnijar.cpp Bug 1547519 - Rename NS_STRINGIFY to MOZ_STRINGIFY, move to mfbt, and unify stragglers r=glandium 2019-09-04 02:40:32 +00:00
Omnijar.h
PoisonIOInterposer.h Bug 1585373 - Re-enable PoisonIOInterposer for the mingw build r=dmajor 2019-10-09 14:53:36 +00:00
PoisonIOInterposerBase.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
PoisonIOInterposerMac.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
PoisonIOInterposerStub.cpp
PoisonIOInterposerWin.cpp Bug 1598098: Eradicate "using namespace mozilla;" from xpcom/build; r=froydnj 2019-11-20 19:58:05 +00:00
Services.py bug 1543115: remote: expose nsIRemoteAgent as XPCOM service; r=remote-protocol-reviewers,maja_zf,nika 2019-11-22 08:03:19 +00:00
XPCOM.h Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
XPCOMInit.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
XPCOMModule.h
XPCOMModule.inc
XREAppData.h
XREChildData.h
XREShellData.h
components.conf Bug 1591823 - Part 1: Remove the unused nsIComponentRegistrar.enumerateCIDs() method; r=froydnj 2019-10-28 13:26:17 +00:00
mach_override.c
mach_override.h
moz.build Bug 1585373 - Re-enable PoisonIOInterposer for the mingw build r=dmajor 2019-10-09 14:53:36 +00:00
nsXPCOM.h Bug 1579367 - Initialize XPCJSContext explicitly, after loading user prefs. r=kmag 2019-11-22 12:40:17 +00:00
nsXPCOMCID.h
nsXPCOMCIDInternal.h
nsXPCOMPrivate.h
nsXULAppAPI.h Bug 1470591 - Part 6: Create a fork server process. r=gsvelto 2019-12-05 00:02:40 +00:00
perfprobe.cpp
perfprobe.h
xpcom_alpha.def
xrecore.h