diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /netwerk/protocol/device/nsDeviceProtocolHandler.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'netwerk/protocol/device/nsDeviceProtocolHandler.cpp')
-rw-r--r-- | netwerk/protocol/device/nsDeviceProtocolHandler.cpp | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/netwerk/protocol/device/nsDeviceProtocolHandler.cpp b/netwerk/protocol/device/nsDeviceProtocolHandler.cpp new file mode 100644 index 000000000..26c5f33df --- /dev/null +++ b/netwerk/protocol/device/nsDeviceProtocolHandler.cpp @@ -0,0 +1,93 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * 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/. */ + +#include "nsDeviceProtocolHandler.h" +#include "nsDeviceChannel.h" +#include "nsAutoPtr.h" +#include "nsSimpleURI.h" + +namespace mozilla { +namespace net { + +//----------------------------------------------------------------------------- +NS_IMPL_ISUPPORTS(nsDeviceProtocolHandler, + nsIProtocolHandler) + +nsresult +nsDeviceProtocolHandler::Init(){ + return NS_OK; +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::GetScheme(nsACString &aResult) +{ + aResult.AssignLiteral("moz-device"); + return NS_OK; +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::GetDefaultPort(int32_t *aResult) +{ + *aResult = -1; // no port for moz_device: URLs + return NS_OK; +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::GetProtocolFlags(uint32_t *aResult) +{ + *aResult = URI_NORELATIVE | URI_NOAUTH | URI_DANGEROUS_TO_LOAD; + return NS_OK; +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::NewURI(const nsACString &spec, + const char *originCharset, + nsIURI *baseURI, + nsIURI **result) +{ + RefPtr<nsSimpleURI> uri = new nsSimpleURI(); + + nsresult rv = uri->SetSpec(spec); + NS_ENSURE_SUCCESS(rv, rv); + + uri.forget(result); + return NS_OK; +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::NewChannel2(nsIURI* aURI, + nsILoadInfo* aLoadInfo, + nsIChannel** aResult) +{ + RefPtr<nsDeviceChannel> channel = new nsDeviceChannel(); + nsresult rv = channel->Init(aURI); + NS_ENSURE_SUCCESS(rv, rv); + + // set the loadInfo on the new channel + rv = channel->SetLoadInfo(aLoadInfo); + NS_ENSURE_SUCCESS(rv, rv); + + channel.forget(aResult); + return NS_OK; +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::NewChannel(nsIURI* aURI, nsIChannel **aResult) +{ + return NewChannel2(aURI, nullptr, aResult); +} + +NS_IMETHODIMP +nsDeviceProtocolHandler::AllowPort(int32_t port, + const char *scheme, + bool *aResult) +{ + // don't override anything. + *aResult = false; + return NS_OK; +} + +} // namespace net +} // namespace mozilla |