2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2010-10-19 16:37:03 +00:00
|
|
|
|
|
|
|
#ifndef ThirdPartyUtil_h__
|
|
|
|
#define ThirdPartyUtil_h__
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "mozIThirdPartyUtil.h"
|
|
|
|
#include "nsIEffectiveTLDService.h"
|
2012-06-19 02:30:09 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-10-19 16:37:03 +00:00
|
|
|
|
|
|
|
class nsIURI;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class ThirdPartyUtil final : public mozIThirdPartyUtil
|
2010-10-19 16:37:03 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_MOZITHIRDPARTYUTIL
|
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
private:
|
2014-06-25 02:09:15 +00:00
|
|
|
~ThirdPartyUtil() {}
|
|
|
|
|
2010-10-19 16:37:03 +00:00
|
|
|
nsresult IsThirdPartyInternal(const nsCString& aFirstDomain,
|
2011-09-29 06:19:26 +00:00
|
|
|
nsIURI* aSecondURI, bool* aResult);
|
2010-10-19 16:37:03 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIEffectiveTLDService> mTLDService;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|