mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
Issue #80 - De-unify smaller netwerk/protocol components
- data - device - file - viewsource - wyciwyg
This commit is contained in:
parent
60b7d2e259
commit
911270ea60
7 changed files with 8 additions and 5 deletions
|
|
@ -8,7 +8,7 @@ EXPORTS.mozilla.net += [
|
|||
'DataChannelParent.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'DataChannelChild.cpp',
|
||||
'DataChannelParent.cpp',
|
||||
'nsDataChannel.cpp',
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
#include "nsEscape.h"
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::net;
|
||||
|
||||
nsresult
|
||||
nsDataChannel::OpenContentStream(bool async, nsIInputStream **result,
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsDeviceChannel.cpp',
|
||||
'nsDeviceProtocolHandler.cpp',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ XPIDL_SOURCES += [
|
|||
|
||||
XPIDL_MODULE = 'necko_file'
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsFileChannel.cpp',
|
||||
'nsFileProtocolHandler.cpp',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
#define DESKTOP_ENTRY_SECTION "Desktop Entry"
|
||||
#endif
|
||||
|
||||
using namespace mozilla::net;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
nsFileProtocolHandler::nsFileProtocolHandler()
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ XPIDL_SOURCES += [
|
|||
|
||||
XPIDL_MODULE = 'necko_viewsource'
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsViewSourceChannel.cpp',
|
||||
'nsViewSourceHandler.cpp',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ EXPORTS.mozilla.net += [
|
|||
'WyciwygChannelParent.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsWyciwyg.cpp',
|
||||
'nsWyciwygChannel.cpp',
|
||||
'nsWyciwygProtocolHandler.cpp',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue