PURLClassifierInfo.ipdlh (572B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 include "mozilla/ipc/URIUtils.h"; 6 7 [RefCounted] using class nsIURI from "nsIURI.h"; 8 9 namespace mozilla { 10 namespace dom { 11 12 13 struct ClassifierInfo { 14 nsCString list; 15 nsCString provider; 16 nsCString fullhash; 17 }; 18 19 struct URLClassifierLocalResult 20 { 21 nullable nsIURI uri; 22 nsCString featureName; 23 nsCString matchingList; 24 }; 25 26 27 } // namespace dom 28 } // namespace mozilla