no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD
de -> 1d458b9f128b124a25679e755f61139726a77caf
dsb -> d3afb988e0d6b558a8a590658da39eb15b2f0b18
et -> 77d8cd6a89d77a9356bc597e476cd2cc764cd607
hsb -> a67aba9c3b33f8bc097d742bd70ea98ca80a1335
hu -> ccf9d887f4eb7e4bac53afde57598686a1e255b9
hye -> ed3709ec02d90cca3ebf3237ea6d6411353e2559
it -> d544065a45d9b684beb7f60bbeaf30fd1a696e69
ja -> 17e2f87f08c519add504e8f4265e0f7b6524a34a
ja-JP-mac -> 0e30fddf50953f46b80dbc99825270568b1a0d65
oc -> e114f06272b1c9377d19ca013aa6a51509cb719a
pt-PT -> f7bf8255666f78337b22b3206516736daf222d40
zh-CN -> ff1ee767ed480c30d6aaefa00c65c8f62477cc18
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 sw=2 sts=2 et tw=80: */
/* 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__net__FileChannelChild_h
#define mozilla__net__FileChannelChild_h
#include "nsFileChannel.h"
#include "nsIChildChannel.h"
#include "nsISupportsImpl.h"
#include "mozilla/net/PFileChannelChild.h"
namespace mozilla {
namespace net {
class FileChannelChild : public nsFileChannel,
public nsIChildChannel,
public PFileChannelChild {
public:
explicit FileChannelChild(nsIURI* uri);
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_NSICHILDCHANNEL
private:
~FileChannelChild() = default;
};
} // namespace net
} // namespace mozilla
#endif /* mozilla__net__FileChannelChild_h */