2015-05-03 22:32:37 +03: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 15:12:37 +04: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 20:37:03 +04:00
|
|
|
|
|
|
|
#ifndef ThirdPartyUtil_h__
|
|
|
|
#define ThirdPartyUtil_h__
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "mozIThirdPartyUtil.h"
|
2019-02-04 21:43:43 +03:00
|
|
|
#include "nsEffectiveTLDService.h"
|
2012-06-19 06:30:09 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-10-19 20:37:03 +04:00
|
|
|
|
|
|
|
class nsIURI;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class ThirdPartyUtil final : public mozIThirdPartyUtil {
|
2010-10-19 20:37:03 +04:00
|
|
|
public:
|
2019-02-08 23:01:46 +03:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2010-10-19 20:37:03 +04:00
|
|
|
NS_DECL_MOZITHIRDPARTYUTIL
|
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
2019-02-08 23:01:46 +03:00
|
|
|
static void Startup();
|
2019-02-04 18:41:28 +03:00
|
|
|
static ThirdPartyUtil* GetInstance();
|
|
|
|
|
2010-10-19 20:37:03 +04:00
|
|
|
private:
|
2019-02-04 18:41:28 +03:00
|
|
|
~ThirdPartyUtil();
|
2014-06-25 06:09:15 +04:00
|
|
|
|
2019-02-05 19:38:56 +03:00
|
|
|
bool IsThirdPartyInternal(const nsCString& aFirstDomain,
|
|
|
|
const nsCString& aSecondDomain) {
|
|
|
|
// Check strict equality.
|
|
|
|
return aFirstDomain != aSecondDomain;
|
|
|
|
}
|
2010-10-19 20:37:03 +04:00
|
|
|
nsresult IsThirdPartyInternal(const nsCString& aFirstDomain,
|
2011-09-29 10:19:26 +04:00
|
|
|
nsIURI* aSecondURI, bool* aResult);
|
2010-10-19 20:37:03 +04:00
|
|
|
|
2019-02-05 19:38:56 +03:00
|
|
|
nsCString GetBaseDomainFromWindow(nsPIDOMWindowOuter* aWindow) {
|
|
|
|
MOZ_ASSERT(aWindow);
|
|
|
|
|
|
|
|
mozilla::dom::Document* doc = aWindow->GetExtantDoc();
|
|
|
|
|
|
|
|
if (!doc) {
|
|
|
|
return EmptyCString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return doc->GetBaseDomain();
|
|
|
|
}
|
|
|
|
|
2019-02-04 21:43:43 +03:00
|
|
|
RefPtr<nsEffectiveTLDService> mTLDService;
|
2010-10-19 20:37:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|