Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / netwerk / url-classifier / AsyncUrlChannelClassifier.h
blob52eae5a974855f8aace9bf1c0e0a357f3179c114
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set expandtab ts=4 sw=2 sts=2 cin: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_net_AsyncUrlChannelClassifier_h
8 #define mozilla_net_AsyncUrlChannelClassifier_h
10 #include "nsISupports.h"
11 #include <functional>
13 class nsIChannel;
15 namespace mozilla {
16 namespace net {
18 class AsyncUrlChannelClassifier final {
19 public:
20 static nsresult CheckChannel(nsIChannel* aChannel,
21 std::function<void()>&& aCallback);
24 } // namespace net
25 } // namespace mozilla
27 #endif // mozilla_net_AsyncUrlChannelClassifier_h