Bug 1109910 - Move LoadInfo from docShell into Necko (r=sicking,sworkman)

This commit is contained in:
Christoph Kerschbaumer 2015-02-18 12:34:13 -08:00
parent 27bb6fd3bb
commit b62523bdbc
5 changed files with 6 additions and 3 deletions

View File

@ -20,7 +20,6 @@ XPIDL_SOURCES += [
'nsIDownloadHistory.idl',
'nsIGlobalHistory2.idl',
'nsILoadContext.idl',
'nsILoadInfo.idl',
'nsIPrivacyTransitionObserver.idl',
'nsIReflowObserver.idl',
'nsIRefreshURI.idl',
@ -45,12 +44,10 @@ EXPORTS += [
EXPORTS.mozilla += [
'IHistory.h',
'LoadContext.h',
'LoadInfo.h',
]
UNIFIED_SOURCES += [
'LoadContext.cpp',
'LoadInfo.cpp',
'nsAboutRedirector.cpp',
'nsDefaultURIFixup.cpp',
'nsDocShell.cpp',

View File

@ -53,6 +53,7 @@ XPIDL_SOURCES += [
'nsILoadContextInfo.idl',
'nsILoadGroup.idl',
'nsILoadGroupChild.idl',
'nsILoadInfo.idl',
'nsIMIMEInputStream.idl',
'nsIMultiPartChannel.idl',
'nsINestedURI.idl',
@ -152,6 +153,10 @@ EXPORTS += [
'nsURLParsers.h',
]
EXPORTS.mozilla += [
'LoadInfo.h',
]
EXPORTS.mozilla.net += [
'ChannelDiverterChild.h',
'ChannelDiverterParent.h',
@ -174,6 +179,7 @@ UNIFIED_SOURCES += [
'Dashboard.cpp',
'EventTokenBucket.cpp',
'LoadContextInfo.cpp',
'LoadInfo.cpp',
'NetworkActivityMonitor.cpp',
'nsAsyncRedirectVerifyHelper.cpp',
'nsAsyncStreamCopier.cpp',