diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-23 11:28:41 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:54:15 +0200 |
commit | 19bf63b0ee0ef9e156d8484bf3555501ad14933e (patch) | |
tree | 6116ac31af91d4b5493ff99151f42bbb1c6ab2c0 /image/decoders/icon/android/nsIconChannel.h | |
parent | 8b539ec9e76c3daf39f1d7ac188aee3778474ee8 (diff) | |
download | UXP-19bf63b0ee0ef9e156d8484bf3555501ad14933e.tar UXP-19bf63b0ee0ef9e156d8484bf3555501ad14933e.tar.gz UXP-19bf63b0ee0ef9e156d8484bf3555501ad14933e.tar.lz UXP-19bf63b0ee0ef9e156d8484bf3555501ad14933e.tar.xz UXP-19bf63b0ee0ef9e156d8484bf3555501ad14933e.zip |
Issue #1053 - Remove android support from image
Diffstat (limited to 'image/decoders/icon/android/nsIconChannel.h')
-rw-r--r-- | image/decoders/icon/android/nsIconChannel.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/image/decoders/icon/android/nsIconChannel.h b/image/decoders/icon/android/nsIconChannel.h deleted file mode 100644 index be5542998..000000000 --- a/image/decoders/icon/android/nsIconChannel.h +++ /dev/null @@ -1,46 +0,0 @@ -/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* 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/. */ - -#ifndef mozilla_image_decoders_icon_android_nsIconChannel_h -#define mozilla_image_decoders_icon_android_nsIconChannel_h - -#include "mozilla/Attributes.h" - -#include "nsIChannel.h" -#include "nsIURI.h" -#include "nsIIconURI.h" -#include "nsCOMPtr.h" - -/** - * This class is the Android implementation of nsIconChannel. - * It asks Android for an icon, and creates a new channel for - * that file to which all calls will be proxied. - */ -class nsIconChannel final : public nsIChannel { - public: - NS_DECL_ISUPPORTS - NS_FORWARD_NSIREQUEST(mRealChannel->) - NS_FORWARD_NSICHANNEL(mRealChannel->) - - nsIconChannel() { } - - /** - * Called by nsIconProtocolHandler after it creates this channel. - * Must be called before calling any other function on this object. - * If this method fails, no other function must be called on this object. - */ - nsresult Init(nsIURI* aURI); - - private: - ~nsIconChannel() { } - - /** - * The channel to the temp icon file (e.g. to /tmp/2qy9wjqw.html). - * Will always be non-null after a successful Init. - */ - nsCOMPtr<nsIChannel> mRealChannel; -}; - -#endif // mozilla_image_decoders_icon_android_nsIconChannel_h |