зеркало из https://github.com/mozilla/gecko-dev.git
53 строки
1.6 KiB
C++
53 строки
1.6 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 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_dom_URLClassifierChild_h
|
|
#define mozilla_dom_URLClassifierChild_h
|
|
|
|
#include "mozilla/dom/PURLClassifierChild.h"
|
|
#include "mozilla/dom/PURLClassifierLocalChild.h"
|
|
#include "nsIURIClassifier.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
template<typename BaseProtocol>
|
|
class URLClassifierChildBase : public BaseProtocol
|
|
{
|
|
public:
|
|
URLClassifierChildBase() = default;
|
|
|
|
void SetCallback(nsIURIClassifierCallback* aCallback)
|
|
{
|
|
mCallback = aCallback;
|
|
}
|
|
|
|
mozilla::ipc::IPCResult Recv__delete__(const MaybeInfo& aInfo,
|
|
const nsresult& aResult) override
|
|
{
|
|
MOZ_ASSERT(mCallback);
|
|
if (aInfo.type() == MaybeInfo::TClassifierInfo) {
|
|
mCallback->OnClassifyComplete(aResult, aInfo.get_ClassifierInfo().list(),
|
|
aInfo.get_ClassifierInfo().provider(),
|
|
aInfo.get_ClassifierInfo().fullhash());
|
|
}
|
|
return IPC_OK();
|
|
}
|
|
|
|
private:
|
|
~URLClassifierChildBase() = default;
|
|
|
|
nsCOMPtr<nsIURIClassifierCallback> mCallback;
|
|
};
|
|
|
|
using URLClassifierChild = URLClassifierChildBase<PURLClassifierChild>;
|
|
using URLClassifierLocalChild = URLClassifierChildBase<PURLClassifierLocalChild>;
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_URLClassifierChild_h
|