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: */
|
2014-11-06 17:41:00 +03: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/. */
|
|
|
|
|
2016-06-08 15:46:50 +03:00
|
|
|
#include "mozilla/BasePrincipal.h"
|
2014-11-06 17:41:00 +03:00
|
|
|
#include "nsIBrowserDOMWindow.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
2016-02-18 11:33:07 +03:00
|
|
|
namespace mozilla {
|
2017-01-12 19:38:48 +03:00
|
|
|
class OriginAttributes;
|
2016-02-18 11:33:07 +03:00
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsOpenURIInFrameParams final : public nsIOpenURIInFrameParams
|
2014-11-06 17:41:00 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOPENURIINFRAMEPARAMS
|
|
|
|
|
2017-01-12 19:38:48 +03:00
|
|
|
explicit nsOpenURIInFrameParams(const mozilla::OriginAttributes& aOriginAttributes);
|
2014-11-06 17:41:00 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
~nsOpenURIInFrameParams();
|
2016-02-18 11:33:07 +03:00
|
|
|
|
2017-01-12 19:38:48 +03:00
|
|
|
mozilla::OriginAttributes mOpenerOriginAttributes;
|
2014-11-06 17:41:00 +03:00
|
|
|
nsString mReferrer;
|
|
|
|
bool mIsPrivate;
|
|
|
|
};
|