no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / netwerk / ipc / ProxyAutoConfigParent.cpp
blobd0a8727ef1c2a74e9ab98a33eed7e5945b70b1fd
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "ProxyAutoConfigParent.h"
8 #include "mozilla/ipc/Endpoint.h"
10 namespace mozilla::net {
12 ProxyAutoConfigParent::ProxyAutoConfigParent() = default;
14 ProxyAutoConfigParent::~ProxyAutoConfigParent() = default;
16 void ProxyAutoConfigParent::Init(Endpoint<PProxyAutoConfigParent>&& aEndpoint) {
17 DebugOnly<bool> ok = aEndpoint.Bind(this);
18 MOZ_ASSERT(ok);
21 } // namespace mozilla::net