ClientValidation.h (844B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */ 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/. */ 6 #ifndef _mozilla_dom_ClientValidation_h 7 #define _mozilla_dom_ClientValidation_h 8 9 #include "nsStringFwd.h" 10 11 namespace mozilla { 12 13 namespace ipc { 14 class PrincipalInfo; 15 } // namespace ipc 16 17 namespace dom { 18 19 bool ClientIsValidPrincipalInfo( 20 const mozilla::ipc::PrincipalInfo& aPrincipalInfo); 21 22 bool ClientIsValidCreationURL(const mozilla::ipc::PrincipalInfo& aPrincipalInfo, 23 const nsACString& aURL); 24 25 } // namespace dom 26 } // namespace mozilla 27 28 #endif // _mozilla_dom_ClientValidation_h