summaryrefslogtreecommitdiffstats
path: root/toolkit/components/cascade_bloom_filter/CascadeFilter.cpp
blob: db24e9b16890c7785872952647688974eed91937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 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 "nsCOMPtr.h"

#include "CascadeFilter.h"

namespace {
extern "C" {

// Implemented in Rust.
void cascade_filter_construct(nsICascadeFilter** aResult);
}
}  // namespace

namespace mozilla {

already_AddRefed<nsICascadeFilter> ConstructCascadeFilter() {
  nsCOMPtr<nsICascadeFilter> filter;
  cascade_filter_construct(getter_AddRefs(filter));
  return filter.forget();
}

}  // namespace mozilla