Bug 618919 - Non-mobile 'Bad cert' dialog is shown for XHR [r=dougt]

--HG--
rename : mobile/components/phone/Makefile.in => mobile/components/build/Makefile.in
rename : mobile/components/phone/nsIPhoneSupport.idl => mobile/components/build/nsIPhoneSupport.idl
rename : mobile/components/phone/nsPhoneSupport.cpp => mobile/components/build/nsPhoneSupport.cpp
This commit is contained in:
Mark Finkle 2011-02-27 14:39:49 -05:00
Родитель d730745e85
Коммит ebc83c0ea2
12 изменённых файлов: 329 добавлений и 60 удалений

Просмотреть файл

@ -36,6 +36,9 @@
# ***** END LICENSE BLOCK *****
ifndef LIBXUL_SDK
# Needed for building our components as part of libxul
APP_LIBXUL_DIRS += mobile/components/build
include $(topsrcdir)/toolkit/toolkit-tiers.mk
else
ifdef ENABLE_TESTS

Просмотреть файл

@ -81,9 +81,4 @@ ifdef MOZ_UPDATER
EXTRA_COMPONENTS += UpdatePrompt.js
endif
ifneq (Android,$(OS_TARGET))
DIRS = phone \
$(NULL)
endif
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -43,22 +43,31 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE_NAME = mozphone
MODULE = mozphone
LIBRARY_NAME = mozphone
MODULE_NAME = nsBrowserCompsModule
MODULE = browsercomps
LIBRARY_NAME = browsercomps
LIBXUL_LIBRARY = 1
IS_COMPONENT = 1
EXPORT_LIBRARY = 1
EXPORTS = nsBrowserComponents.h
REQUIRES = \
xpcom \
string \
pref \
$(NULL)
CPPSRCS = nsPhoneSupport.cpp
XPIDLSRCS = nsIPhoneSupport.idl
CPPSRCS = \
nsSSLCertErrorDialog.cpp \
nsBrowserModule.cpp \
$(NULL)
ifndef ANDROID
CPPSRCS += nsPhoneSupport.cpp
XPIDLSRCS = nsIPhoneSupport.idl
endif
EXTRA_DSO_LDOPTS += \
$(XPCOM_GLUE_LDOPTS) \

Просмотреть файл

@ -0,0 +1,41 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mobile Browser.
*
* The Initial Developer of the Original Code is
* the Mozilla Foundation <http://www.mozilla.org/>.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Mark Finkle <mfinkle@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
// Needed for building our components as part of libxul
#define APP_COMPONENT_MODULES MODULE(nsBrowserCompsModule)

Просмотреть файл

@ -0,0 +1,78 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mobile Browser.
*
* The Initial Developer of the Original Code is
* the Mozilla Foundation <http://www.mozilla.org/>.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Mark Finkle <mfinkle@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "mozilla/ModuleUtils.h"
#ifndef ANDROID
#include "nsPhoneSupport.h"
#endif
#include "nsSSLCertErrorDialog.h"
#ifndef ANDROID
NS_GENERIC_FACTORY_CONSTRUCTOR(nsPhoneSupport)
NS_DEFINE_NAMED_CID(nsPhoneSupport_CID);
#endif
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSSLCertErrorDialog)
NS_DEFINE_NAMED_CID(nsSSLCertErrorDialog_CID);
static const mozilla::Module::CIDEntry kBrowserCIDs[] = {
#ifndef ANDROID
{ &knsPhoneSupport_CID, false, NULL, nsPhoneSupportConstructor },
#endif
{ &knsSSLCertErrorDialog_CID, false, NULL, nsSSLCertErrorDialogConstructor },
{ NULL }
};
static const mozilla::Module::ContractIDEntry kBrowserContracts[] = {
#ifndef ANDROID
{ nsPhoneSupport_ContractID, &knsPhoneSupport_CID },
#endif
{ nsSSLCertErrorDialog_ContractID, &knsSSLCertErrorDialog_CID },
{ NULL }
};
static const mozilla::Module kBrowserModule = {
mozilla::Module::kVersion,
kBrowserCIDs,
kBrowserContracts
};
NSMODULE_DEFN(nsBrowserCompsModule) = &kBrowserModule;

Просмотреть файл

@ -53,21 +53,8 @@
#include <QtGui/QWidget>
#endif
#include "nsStringAPI.h"
#include "nsIPhoneSupport.h"
#include "mozilla/ModuleUtils.h"
class nsPhoneSupport : public nsIPhoneSupport
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPHONESUPPORT
nsPhoneSupport() {};
~nsPhoneSupport(){};
};
#include "nsPhoneSupport.h"
#include "nsString.h"
NS_IMPL_ISUPPORTS1(nsPhoneSupport, nsIPhoneSupport)
@ -429,34 +416,3 @@ nsPhoneSupport::RestoreDefaultBrowser()
return NS_ERROR_NOT_IMPLEMENTED;
#endif
}
//------------------------------------------------------------------------------
// XPCOM REGISTRATION BELOW
//------------------------------------------------------------------------------
#define nsPhoneSupport_CID \
{ 0x2a08c9e4, 0xf853, 0x4f02, \
{0x88, 0xd8, 0xd6, 0x2f, 0x27, 0xca, 0x06, 0x85} }
#define nsPhoneSupport_ContractID "@mozilla.org/phone/support;1"
NS_GENERIC_FACTORY_CONSTRUCTOR(nsPhoneSupport)
NS_DEFINE_NAMED_CID(nsPhoneSupport_CID);
static const mozilla::Module::CIDEntry kPhoneCIDs[] = {
{ &knsPhoneSupport_CID, false, NULL, nsPhoneSupportConstructor },
{ NULL }
};
static const mozilla::Module::ContractIDEntry kPhoneContracts[] = {
{ nsPhoneSupport_ContractID, &knsPhoneSupport_CID },
{ NULL }
};
static const mozilla::Module kPhoneModule = {
mozilla::Module::kVersion,
kPhoneCIDs,
kPhoneContracts
};
NSMODULE_DEFN(nsPhoneSupportModule) = &kPhoneModule;

Просмотреть файл

@ -0,0 +1,65 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Minimo Tel Protocol Handler.
*
* The Initial Developer of the Original Code is
* the Mozilla Foundation <http://www.mozilla.org/>.
* Portions created by the Initial Developer are Copyright (C) 2008
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Doug Turner <dougt@meer.net>
* Nino D'Aversa <ninodaversa@gmail.com>
* Alex Pakhotin <alexp@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef __NS_PHONESUPPORT_H__
#define __NS_PHONESUPPORT_H__
#include "nsIPhoneSupport.h"
class nsPhoneSupport : public nsIPhoneSupport
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPHONESUPPORT
nsPhoneSupport() {};
~nsPhoneSupport() {};
};
#define nsPhoneSupport_CID \
{ 0x2a08c9e4, 0xf853, 0x4f02, \
{0x88, 0xd8, 0xd6, 0x2f, 0x27, 0xca, 0x06, 0x85} }
#define nsPhoneSupport_ContractID "@mozilla.org/phone/support;1"
#endif

Просмотреть файл

@ -0,0 +1,58 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mobile Browser SSL Cert Dialog Override.
*
* The Initial Developer of the Original Code is
* the Mozilla Foundation <http://www.mozilla.org/>.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Mark Finkle <mfinkle@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "nsSSLCertErrorDialog.h"
NS_IMPL_THREADSAFE_ISUPPORTS1(nsSSLCertErrorDialog, nsISSLCertErrorDialog);
NS_IMETHODIMP
nsSSLCertErrorDialog::ShowCertError(nsIInterfaceRequestor *ctx,
nsISSLStatus *status,
nsIX509Cert *cert,
const nsAString & textErrorMessage,
const nsAString & htmlErrorMessage,
const nsACString & hostName,
PRUint32 portNumber)
{
/* Returning NS_OK here does not mean that this connection will continue
* successfully. The connection has been or will be aborted regardless of
* what we do here.
*/
return NS_OK;
}

Просмотреть файл

@ -0,0 +1,63 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mobile Browser SSL Cert Dialog Override.
*
* The Initial Developer of the Original Code is
* the Mozilla Foundation <http://www.mozilla.org/>.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Mark Finkle <mfinkle@mozilla.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef __NS_SSLCERTERRORDIALOG_H__
#define __NS_SSLCERTERRORDIALOG_H__
#include "nsISSLCertErrorDialog.h"
class nsSSLCertErrorDialog : public nsISSLCertErrorDialog
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISSLCERTERRORDIALOG
nsSSLCertErrorDialog() {};
~nsSSLCertErrorDialog() {};
};
#define nsSSLCertErrorDialog_CID \
{ 0xb13f1121, 0xfa10, 0x4a7d, \
{0x82, 0xe5, 0x31, 0x59, 0x9b, 0x89, 0x60, 0xb8} }
#define nsSSLCertErrorDialog_ContractID "@mozilla.org/nsSSLCertErrorDialog;1"
#endif

Просмотреть файл

@ -56,3 +56,7 @@ MOZ_XULRUNNER=
MOZ_MORK=
MOZ_PLACES=1
fi
# Needed for building our components as part of libxul
MOZ_APP_COMPONENT_LIBS="browsercomps"
MOZ_APP_COMPONENT_INCLUDE=nsBrowserComponents.h

Просмотреть файл

@ -637,8 +637,5 @@ bin/components/@DLL_PREFIX@nkgnomevfs@DLL_SUFFIX@
@BINPATH@/components/UpdatePrompt.js
#endif
@BINPATH@/components/XPIDialogService.js
#ifndef ANDROID
@BINPATH@/components/@DLL_PREFIX@mozphone@DLL_SUFFIX@
@BINPATH@/components/mozphone.xpt
#endif
@BINPATH@/components/browsercomps.xpt
@BINPATH@/extensions/feedback@mobile.mozilla.org.xpi