diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-11-24 07:27:37 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-24 07:27:37 +0800 |
commit | 876084efe77d9aa633b3ec4aad7910ad27f68ffd (patch) | |
tree | 0624df6348225b3b7a000d51921433283cd67472 /embed/mozilla/BaseProtocolContentHandler.h | |
parent | 32cffc77d9fb08dd41e76f00fb4be7a47483c0e2 (diff) | |
download | gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.tar gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.tar.gz gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.tar.bz2 gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.tar.lz gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.tar.xz gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.tar.zst gsoc2013-epiphany-876084efe77d9aa633b3ec4aad7910ad27f68ffd.zip |
Remove.
2003-11-24 Marco Pesenti Gritti <marco@gnome.org>
* embed/mozilla/BaseProtocolContentHandler.cpp:
* embed/mozilla/BaseProtocolContentHandler.h:
* embed/mozilla/BaseProtocolHandler.cpp:
* embed/mozilla/BaseProtocolHandler.h:
Remove.
* embed/mozilla/ExternalProtocolHandlers.cpp:
* embed/mozilla/ExternalProtocolHandlers.h:
Merge base implementations here. No need
of using 200 files for a work around of
mozilla problems ;)
* embed/mozilla/Makefile.am:
* embed/mozilla/MozRegisterComponents.cpp:
Use ftp CID directly from mozilla headers
instead of doing a copy of it in ours.
Diffstat (limited to 'embed/mozilla/BaseProtocolContentHandler.h')
-rw-r--r-- | embed/mozilla/BaseProtocolContentHandler.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/embed/mozilla/BaseProtocolContentHandler.h b/embed/mozilla/BaseProtocolContentHandler.h deleted file mode 100644 index b1f5c1e71..000000000 --- a/embed/mozilla/BaseProtocolContentHandler.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (C) 2001 Philip Langdale - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#ifndef _BaseProtocolContentHandler_h_ -#define _BaseProtocolContentHandler_h_ - -#include "BaseProtocolHandler.h" -#include "nsIContentHandler.h" - -#include "nsString.h" - -class GBaseProtocolContentHandler : public GBaseProtocolHandler, - public nsIContentHandler -{ - public: - NS_DECL_ISUPPORTS - NS_DECL_NSICONTENTHANDLER - - NS_IMETHODIMP NewChannel(nsIURI *aURI, nsIChannel **_retval); - - GBaseProtocolContentHandler (const char *aScheme); - virtual ~GBaseProtocolContentHandler(); - /* additional members */ - protected: - nsCString mMimeType; -}; - -#endif //_BaseProtocolContentHandler_h_ |